I need to install python packages with pip on a machine without internet access. To do that, I tried to download these packages from the following link : https://www.lfd.uci.edu/~gohlke/pythonlibs/ I thought the whl files are complete packages but when I try to install with pip I get the following error
pip install .\pyproj-3.2.1-cp310-cp310-win_amd64.whl
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewC
onnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x000000F76ABA6EC0>: Failed to establish a new
connection: [WinError 10061] No connection could be made because the target machine actively refused it')':
ERROR: Could not find a version that satisfies the requirement certifi (from pyproj) (from versions: none)
ERROR: No matching distribution found for certifi
The packages I need to install are:
- Numpy
- GDAL
- PYPROJ
- FIONA
- SHAPELY
- GEOPANDAS
I also tried with pip download on my local machine with internet connection but when I try to use the generated whl I get the same issue
How should I proceed to install theses packages?