Installation of GDAL with Conda on Windows

后端 未结 1 810
北荒
北荒 2021-01-29 02:50

I have Anaconda Python 3.6 on Windows 7. I frequently use GeoPandas and it worked fine. Yesterday I tried to install rasterio and georasters, and they seemed to install fine u

相关标签:
1条回答
  • 2021-01-29 03:22

    Starting with the python environment that works fine, and installing the packages with the flag --no-update-dependencies allowed the packages to get installed and work with no problems. They may not be the most up to date versions, but they work.

    conda install rasterio --no-update-dependencies
    conda install georasters --no-update-dependencies
    

    This may also be a solution for anyone trying to install packages that break your python environment.

    0 讨论(0)
提交回复
热议问题