I'm trying to install geopandas. Have the following setup:
- Windows-64
- Anaconda2 (64-bit)
- Python 2.7
Have tried two things:
1)
pip install geopandas
This gives me the following error:
WindowsError: [Error 126] The specified module could not be found and Command "python setup.py egg_info" failed with error code 1 in c:\users\username\appdata\local\temp\pip-install-_kgeyw\shapely\
The solutions to the similar problem here suggest that it's because of the slashes in the path being converted. Not sure how to test this.
2)
anaconda search -t conda geopandas
I then search for the version of geopandas suitable for my setup (Windows-64):
conda install -c maxalbert geopandas
which produces the following error:
UnsatisfiableError: The following specifications were found to be in conflict:
- geopandas
Use "conda info <package> to see the dependencies for each package
When I run the command conda info geopandas I get a list of geopandas version. Not sure how to proceed from here.
conda install geopandas. But make sure to first remove all versions of geopandas (and its dependencies shapely and fiona) that you installed from the other channel or with pip.conda uninstall geopandasproduces the error: PackagesNotFound: The following packages are missing from the target environment: - geopandaspip uninstall geopandas shapely fionaSkipping fiona as it is not installed Skipping geopandas as it is not installed Skipping shapely as it is not installedconda create -n test python=2.7 geopandas -c defaultsto create a fresh environment with geopandas to see if at least that works?