RuntimeError: b'no arguments in initialization list'

前端 未结 7 1436
无人共我
无人共我 2020-12-17 00:40

I\'m trying to solve my issue in my own but I couldn\'t, I\'m trying to run this code in every format you can imagine and in ArcGIS pro software it\'s the same I can\'t find

7条回答
  •  旧时难觅i
    2020-12-17 01:20

    to make sure this is pyproj error rather than geopandas.

    import pyproj
    pyproj.Proj("+init=epsg:4326")
    

    if the above runtime error is the same, we can be sure this error is due to pyproj.

    just conda remove pyproj and install it with pip.

    pip install pyproj
    

    at least this works for me.

    Today(July 30), I resintalled from miniconda, conda remove pyproj did not work for me, instead I pip uninstall pyproj and pip install pyproj makes everything fine.

提交回复
热议问题