Created
September 17, 2021 12:57
-
-
Save sdtaylor/1336abfc1d0e2fab42943d1c8a40f419 to your computer and use it in GitHub Desktop.
python geospatial environment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
conda create --name geo python=3.8 | |
conda activate geo | |
# with a spyder install outside the geo environment, but | |
# pointing to the geo environment bin/python, the following | |
# must be installed in the geo env to get the spyder ipython console working | |
pip install spyder-kernels~=2.0.0 | |
# primary geospatial things | |
pip install xarray rasterio geopandas numpy pandas scipy netcdf4 dask | |
# other usefull things | |
pip install ipython beautifulsoup4 unpackqa pooch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment