【工具配置篇】Window下VSCode之Python配置笔记

2021/9/11 17:05:06

本文主要是介绍【工具配置篇】Window下VSCode之Python配置笔记,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

一.参考教程

1.官网Python配置
2.官网教程修正:
 2.1:Windows命令行中查询python版本为

python

 2.2:Windows下创建虚拟环境为

python -m venv .venv

 2.3:Windows下激活虚拟环境为

.venv\scripts\activate

 #2.3.1:如果 activate 命令生成消息“Activate.ps1 is not digitally signed. You cannot run this script on the current system.”,则需要临时更改 PowerShell 执行策略以允许脚本运行

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process

 2.4:在安装软件包时:例如 python -m pip install matplotlib,可能需要更新pip
 #2.4.1:使用此命令更新pip

easy_install -i https://pypi.doubanio.com/simple/ --upgrade pip


这篇关于【工具配置篇】Window下VSCode之Python配置笔记的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程