Python 使用pyproj的错误

Python 使用pyproj时各种错误问题1:RuntimeError: b’no arguments 问二:module ‘pyproj’ has no attribute 'Proj’

问题一:使用p2 = pyproj.Proj(init=“epsg:6931”)时报错
RuntimeError: b’no arguments in initialization list’

解决方案:
参考链接(https://stackoverflow.com/questions/55390492/runtimeerror-bno-arguments-in-initialization-list)中写的可能是使用的conda install pyproj的问题
Python 使用pyproj的错误_第1张图片
先卸载了原来安装的pyproj: conda remove pyproj
然后使用pip再次安装:pip install pyproj

随后又使用p2 = pyproj.Proj(init=“epsg:6931”)时
再次报错 AttributeError: module ‘pyproj’ has no attribute ‘Proj’
查了一下,可能是版本的问题,
然后,参考链接(https://www.pythonheidong.com/blog/article/153011/),又重新安装了pyproj : pip install pyproj==1.9.6

最终程序正常运行没有报错。

总结直接安装 pyproj 1.9.6版本可能就好。

你可能感兴趣的:(科研笔记,python)