我从python ModuleNotFoundError: No module named 'pycountry'
得到了这个错误。
我使用pip
和pip3
导入了模块,并且我还尝试使用python,python3和IDLE在终端中运行代码。
为什么python无法识别module
?我也收到关于plotly
和pandas
的相同错误。
import pycountry
import plotly.express as px
import pandas as pd
URL_DATASET = r'https://raw.githubusercontent.com/datasets/covid-19/master/data/countries-aggregated.csv
'
df1 = pd.read_csv(URL_DATASET)
list_countries = df1['Country'].unique().tolist()
d_country_code = {}
答案 0 :(得分:0)
打开您的命令窗口,然后在那里使用此代码。
<块引用>pip 安装 pycountry
这将在您的系统中安装整个包,因此无论何时导入模块,它都不会显示错误。
这对我有用,我在 Jupyter Notebook 中使用它时遇到了同样的问题。 如果您想了解更多信息,请访问 this page。
答案 1 :(得分:0)
如果您有 Anaconda,请尝试:
conda install -c conda-forge pycountry