Closed josemarfdc closed 5 years ago
It is a classic error of mixing channels as described here.
Thanks @ocefpaf!
For other people coming here with the same issue, notice when creating the environment I added the channel with -c conda create --yes --name TEST python=3.7 geopandas --channel conda-forge
That still does not force conda to get the dependencies only from conda-forge
. Removing --defaults
from .condarc also has no effect. You need to add channel_priority: strict
to .condarc, then it will get it right.
You need to add
channel_priority: strict
to .condarc, then it will get it right.
It is important to note that the channel_priority: strict
option is new and you'll need an updated conda (>=4.6.1 if I'm not mistaken).
Issue: Importing geopandas fails on a clean environment
Since I don't need poppler, I installed geopandas using
pip
and it works just fine, but without poppler.Environment (
conda list
):Details about
conda
and system (conda info
):This is clean environment that was created with the following: