win10免安装python
python
专栏收录该内容
0 篇文章0 订阅
订阅专栏
1.下载python压缩包解压 传送门
Download Windows x86-64 embeddable zip file
2.下载get-pip 粘贴到 D:\python
https://bootstrap.pypa.io/get-pip.py
python get-pip.py
3.设置环境变量
PYTHON_HOME=D:\python
python 增加 %PYTHON_HOME%;%PYTHON_HOME%\Scripts;%PYTHON_HOME%\Lib
修改python38._pth 把import site 前面的#去掉
设置阿里源 pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
4.安装vscode 安装python插件
5.vscode debug设置
debug
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: 当前文件",
"type": "python",
"request": "launch",
"pythonPath": "D:\\python",
"program": "${file}",
"console": "integratedTerminal"
}
]
}