python-IDE-使用Visual-Studio-Code,关联
Visual Studio Code
配置 Python 开发环境
- 安装 VS-Code
1
sudo pacman -S code
- 安装 VS-Code 的 python 插件
- 启动 VS-Code,进入 extensions 管理(
Ctrl + Shift + x
) - 安装 微软的 python 插件(Extension ID:
ms-python.python
)
- 启动 VS-Code,进入 extensions 管理(
-
在系统上安装python
- 设置 workspace 文件夹
- 从文件夹目录,启动VS Code
1 2
cd my-project code .
- 或者,启动后,打开文件夹: File > Open Folder
- 从文件夹目录,启动VS Code
-
简单写段code,执行下
写个 hello.py
1 2
msg = "Hello World" print(msg)
IDE界面上,文件名 标签栏 最右边的位置,有个三角形的启动按钮,点击就可以运行了。
屏幕下面, terminal 窗口可以看到结果。
简单调试 debug 下
- 选中要下断点的语句,按
F9
,设置成功,句子前面会出现个红点。 - 按
F5
执行 文件名 标签栏
附近会出现调试工具栏
Debug Console
窗口,可以对当前变量进行操作,类似 javascript 的 console
配置虚拟运行环境
- 创建虚拟环境
1
python -m venv your-env-name
- 进入虚拟环境
在VS-Code terminal 中运行source /your-env-path/bin/activate
- 在 VS-Code 中选择 刚创建的虚拟环境中的Python interpreter
Ctrl + Shift + P
呼出 Command Palette- 输入
Python: Select Interpreter
- 选择虚拟环境中的Python interpreter
排错
manjaro 虚拟环境中执行 matplotlib 的图形代码报错
- 代码
1 2 3 4 5 6 | import matplotlib.pyplot as plt import numpy as np x = np.linspace(0, 20, 100) # Create a list of evenly-spaced numbers over the range plt.plot(x, np.sin(x)) # Plot the sine of each x point plt.show() # Display the plot |
- 报错:
1 2 | UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure. plt.show() |
- 排查:
已经在虚拟环境中安装了 matplotlib
同样代码在 manjaro KDE 环境运行正常。
1 2 3 4 5 | import matplotlib import matplotlib.rcsetup as rcsetup print(matplotlib.get_backend()) print(rcsetup.all_backends) |
用上面代码检查发现 虚拟环境用的 backend 是 Agg
,系统环境用的是 QtAgg
- 解决:
在虚拟环境中安装Qt5Agg: pip install PyQt5
修改代码,添加 matplotlib.use("Qt5Agg")
:
1 2 3 4 5 6 7 8 | import matplotlib import matplotlib.pyplot as plt import numpy as np matplotlib.use("Qt5Agg") x = np.linspace(0, 20, 100) plt.plot(x, np.sin(x)) plt.show() |