Open
Description
Hi
I'm working with Anaconda and Python 2.7, and I installed pyshp using conda-forge
.
To test, I imported the library like this:
import pyshp
However, the following error appeared:
ImportError: No module named pyshp
But when I do this:
import shapefile
no errors appear.
Just to test, I uninstalled the library and reinstalled using pip
, but the same thing happens. I really need to import pyshp
, because with shapefile
my code does not run (I also do not know the reason).
Thanks for the help :)