vscode 使用python无法导入库

刚刚在使用vscode,编辑python时,在使用语句

import matplotlib.pyplot as plt

时出现报错,但是在命令行下和conda环境中没有报错

在尝试

pip uninstall matplotlib
pip install matplotlib

后无法解决

之后再发现是工作的目录出错导致的,

1、在vscode中使用ctrl+shift+p打开命令控制板

2、输入:interpreter

3、选择已经安装有 matplotlib包的python环境

在stacoverflow上有类似的问题,并提供了其他解决方案;

https://stackoverflow.com/questions/55544642/vscode-cannot-import-matplotlib

你可能感兴趣的:(python,vscode)