Reputation: 97
I am trying to instal geopandas. It goes like this:
(base) PS C:\Users\a_e_f> conda install geopandas Collecting package metadata (current_repodata.json): done Solving environment: failed with initial frozen solve. Retrying with flexible solve. Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source. Collecting package metadata (repodata.json): done Solving environment: failed with initial frozen solve. Retrying with flexible solve. Solving environment: \ Found conflicts! Looking for incompatible packages. This can take several minutes. Press CTRL-C to abort. Examining tornado:*
etc etc for more than an hour.
How I got here:
I am using Windows 10
Upvotes: 0
Views: 1814
Reputation: 97
Following merv's hints (above) I used the approach here: Conda install some-package hangs with (Solving environment: failed)
That seems to have fixed the problem.
Thanks all for your help.
Upvotes: 0
Reputation: 7804
base
environment, create new, clean ones for your project.conda-forge
channel where GeoPandas team has the ability to fine tune installation processconda create -n geo_env
conda activate geo_env
conda config --env --add channels conda-forge
conda config --env --set channel_priority strict
conda install geopandas
conda create -n geo_env
conda activate geo_env
conda config --env --add channels conda-forge
conda config --env --set channel_priority strict
conda install mamba
mamba install geopandas
Upvotes: 1