Hi Romero,
After installing python3, go to the Unofficial Windows Binaries for Python Extension Packages by C.Gohlke and download the following Python wheels: (Make sure you select the version compatible with your Windows system (e.g., 64-bit) and python version(e.g., cp310 = python 3.10))
shapely
pyproj
rtree
pyzmq
GDAL
fiona
rasterio
Save all these wheels in a folder, then change directory to the folder in CMD. Type the command ” pip install FILENAME.whl ” and change “FILENAME” to the name of the package intended to be installed. Repeat steps for other packages.
After this step, Download the requirements file “requirements_edited.txt”, change directory to file’s location and type the following command in CMD and all packages listed in the file will be installed:
” pip install -r requirements_edited.txt “
I hope this solves the problem, I will try validating this with a clean installation sometime this week- it should be a matter of installing packages in the correct order considering dependencies and whether the package is available via direct pip install or not.
Cheers,
Nayef