'ModuleNotFoundError: No module named 'pyproj._network'
I am trying to run Python Code on Spyder for scientific computing. I use geometric information from shape files using geopandas. Installing geopandas was already difficult but I finally managed. However now I have another issue, that a module called 'pyproj._network' is not found. I checked and the module is there and was also added to the path using the PYTHONPATH manager of Spyder. Now I dont know anymore- any help very much appreciated! Thanks!
`ModuleNotFoundError: No module named 'pyproj._network'
Entering post mortem debugging...
c:\users\stefano-work\miniconda3\lib\site-packages\pyproj\network.py(10)() 8 import certifi 9 ---> 10 from pyproj._network import ( # noqa: F401 11 _set_ca_bundle_path, 12 is_network_enabled,
`
Solution 1:[1]
https://github.com/pyproj4/pyproj/issues/1070
I think you are likely missing this: https://docs.microsoft.com/en-US/cpp/windows/latest-supported-vc-redist
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | snowman2 |