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