win10免安装python

2021/7/30 20:36:21

本文主要是介绍win10免安装python,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

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"
}
]
}



这篇关于win10免安装python的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程