[jupyter notebook] error message: No module named 'geopandas'

Table of contents

0. Environment

1. Problem description

2. Solution: command [pip install geopandas]


0. Environment

windows + anaconda + jupyter notebook

1. Problem description

In the process of visualizing data, I imported a package [geopandas], and the result was an error. The reason is that there is no geopandas package locally and needs to be downloaded. After downloading, the error message disappears and the code can run normally.

No module named 'geopandas'

2. Solution: command [pip install geopandas]

process:

1) Open [Anaconda prompt] in Anaconda

2) Use the command to download the package geopandas

 pip install geopandas

If you see successfully, the download is successful

Run the code in jupyter notebook again on the web page, and the error message disappears

--END-- 

Guess you like

Origin blog.csdn.net/qq_41539778/article/details/131217501