Pycharm 项目运行错误问题整理

以下错误发生在拷了别的项目在自己电脑上运行的出错信息:

一、ImportError: No module named matplotlib.pyplot

意思缺少 matplotlib库, 可以点击Python -> preference -> Project Interpreter

Pycharm 项目运行错误问题整理_第1张图片

下面的箭头是添加缺少的第三方库 上面的箭头选择对应的Project Interpreter.

File -> default setting 里也有个project interpreter选项。在最右边的箭头,选择对应项目的interpreter.

Pycharm 项目运行错误问题整理_第2张图片

打开的项目多的话 会有多个project interpreter

Pycharm 项目运行错误问题整理_第3张图片

二、Cannot set up a python SDK at Python 2.7 .The SDK seems invalid.

在edit configurations…下面的 还有个python interpreter,也要选对。

Pycharm 项目运行错误问题整理_第4张图片

三、终端进行 pip instasll 报错

报错信息:

Could not install packages due to an EnvironmentError:
Consider using the `--user` option or check the permissions.

例如:pip install average 提示的报错如下:

Pycharm 项目运行错误问题整理_第5张图片
用上面绿框的方法重装可以解决问题。

你可能感兴趣的:(Pycharm 项目运行错误问题整理)