Unresolved reference(未解析的引用)——解决Pycharm无法导入包问题

在pycharm中运行python代码,提示下面问题,如下图:Unresolved reference(未解析的引用)——解决Pycharm无法导入包问题_第1张图片

在程序中会有如下提示:
Unresolved reference ‘ConfigParser’ less… (Ctrl+F1)
Inspection info: This inspection detects names that should resolve but don’t. Due to dynamic dispatch and duck typing, this is possible in a limited but useful number of cases. Top-level and class-level items are supported better than instance items

然后我们看到没有导入该模块,因此在cnd中输入如下命令

pip install ConfigParser

注意:pip install后面输入的是你缺失的模块名称。
然后将pycharm软件关掉重新打开应该就可以了

还有一种问题是你环境不对,也就是说你可能安装了多个python版本,然后你该模块也安装在某个环境中,但是这个工程的python环境中没有该模块,这时候需要你在file——setings——project xx ——project interpreter中将环境改掉,或者在本工程的python环境中再下载缺失的模块。

你可能感兴趣的:(Python)