Nabih Bawazir
Nabih Bawazir

Reputation: 7265

How to update geopandas?

Currently I got geopandas 0.9.0 from pip install geopandas,

I try to follow this instruction How can I update geopandas to it's most recent version? , (conda install -c conda-forge geopandas=0.10 )

but bash: conda: command not found ...

Is there any solution to insatall geopandas 0.10.0 or later?

Upvotes: 1

Views: 2641

Answers (1)

martinfleis
martinfleis

Reputation: 7814

If you have install geopandas using pip, you should also update it using pip.

pip install geopandas -U

The -U or --upgrade flag ensures you get the latest version no matter the one installed.

Upvotes: 3

Related Questions