我刚刚开始一项新工作,所以我必须在Windows中设置地理空间环境(以前我是Mac用户)。我在浏览Geopandas错误#830时遇到麻烦。根据对该错误的注释,如果我可以将pyproj降级到1.9.4版,它将解决此问题。但是,由于某种原因我无法安装1.9.4。我尝试了以下方法但没有成功:
conda install -c conda-forge pyproj==1.9.4
当我尝试此操作时,它会挂在“解决环境”阶段。
然后我尝试了这个:
pip install pyproj==1.9.4
但是,我收到此错误:
Collecting pyproj-1.9.4
Could not find a version that satisfies the requirement pyproj-1.9.4 (from
versions: )
No matching distribution found for pyproj-1.9.4
因此,我尝试下载tar文件并执行以下操作:
pip install "C:\Users\myname\Downloads\pyproj-1.9.4.tar"
但出现此错误:
Could not install packages due to an EnvironmentError: [Errno 2] No such
file or directory: 'C:\Users\myname\Downloads\pyproj-1.9.4.tar'
我实际上已经做得比这更多(已经花费了8个多小时),但是我希望有人比我更能使我摆脱痛苦:-)我正在使用conda版本4.5.11和python 3.5 .6。
在此先感谢您的帮助。