VScode配置python环境

如何在VScode 上运行python代码

  • python包下载
  • VScode 插件下载
  • cmd shell修改
  • 激活环境

python包下载

这里推荐下载Anaconda包,下载安装的过程可以看之前的博客。然后查看系统路径是否添加了anaconda的path。
1.右击’我的电脑‘->属性->高级系统设置
2.高级设置->环境变量->path
3.添加4个路径
Anaconda路径
Anaconda路径\Scripts
Anaconda路径\Library\bin
Anaconda路径\Library\mingw-w64\bin
VScode配置python环境_第1张图片

VScode 插件下载

打开VScode,左上方选择扩展,搜索ptyhon 安装即可!
VScode配置python环境_第2张图片

cmd shell修改

在这里插入图片描述
刚开始我们的terminal为PS:power shell,如果需要修改成cmd命令行。
shift+ctrl+p
选择 Terminal: Select Default Profile
在这里插入图片描述

VScode配置python环境_第3张图片
选择Command Prompt,然后在terminal打开
在这里插入图片描述

激活环境

shift+ctrl+p 搜索 python : Selected Interpreter:
VScode配置python环境_第4张图片

Entrer inertpreter path:
添加python的路径就可以了
VScode配置python环境_第5张图片
VScode右下角可以选择python环境
也可以在terminal下使用conda create 命令创建虚拟环境。

你可能感兴趣的:(python,vscode,开发语言)