Ctotti
Ctotti

Reputation: 23

How can I update geopandas to it's most recent version?

I installed the geopandas package through anaconda using conda install -c conda-forge geopandas , but for some reason the 0.6.3 version got installed.

I need to use the missing_kwds function, but this function is only available in the latest versions of geopandas (currently it's 0.10.0).

I tried updating it by checking conda install -c conda-forge geopandas -h and then using the ---update-all but after hours of waiting I figured that wasn't right. Does anyone know how to help me?

Upvotes: 2

Views: 5496

Answers (1)

MattTriano
MattTriano

Reputation: 1542

You can specify the version number you want to install (example below).

conda install -c conda-forge geopandas=0.10

If you're working in a conda env (which I would highly advise, along with running the 2 conda config steps on the conda-forge home page on your machine to add the conda-forge channel and prioritize installing packages from the conda-forge channel), make sure you've already activated your env before running that install command.

Upvotes: 4

Related Questions