'Is any other process to download packages without pip?

I am stuck to download pip install fiona package but still it is not downloaded on my windows 10 system.

1.Help to download fiona package

2.How to control cache packages on pip



Solution 1:[1]

you can use anaconda to download the package conda install -c conda-forge fiona

Solution 2:[2]

Yes ! we can download any packages without pip by help of pipwin.

pip install wheel
pip install pipwin

and by the help of you can download..

pipwin install gdal
pipwin install fiona
pip install geopandas

Solution 3:[3]

we can ignore to download pip cache package by following steps....

1.Remove a package from cache

pip cache remove matplotlib

2.clear all wheel files from pip's cache.

pip cache purge

3.get the location of the cache.

pip cache dir

4.install a package without using the cache

pip install --no-cache-dir scipy

5.configure pip to not use the cache "globally"

pip config set global.no-cache-dir false

  1. Clear all packages from pip

pip freeze | xargs pip uninstall -y

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 imen joubeli
Solution 2 Bhoomi app
Solution 3 Bhoomi app