Tag Archives: error

Install Python module earthpy on Windows

I encountered numerous errors when I attempted to install the earthpy Python module and here’s how I eventually got it to work:

pip install wheel
pip install pipwin

pipwin install numpy
pipwin install pandas
pipwin install shapely
pipwin install gdal
pipwin install seaborn
pipwin install fiona
pipwin install pyproj
pipwin install rasterio

pip install earthpy

NOTE: both pip and pipwin are used.

Continue reading Install Python module earthpy on Windows