Hunter的大杂烩 技术学习笔记

2020-04-22

安装 python的 Windows嵌入版本

Filed under: 技术话题 — hunter @ 10:17 pm

参考:https://dev.to/fpim/setting-up-python-s-windows-embeddable-distribution-properly-1081

 

理论上嵌入式版本不能单独作为运行环境,但是本人一向不喜欢安装.exe,怕环境被污染,参考网上一些文章之后,初步能运行起来,还未详细调试

  1. 下载嵌入式版本zip
  2. 解压到 c:\mysoft\python
  3. 建立环境变量设置脚本: setpyvar.bat —> @set “PATH=%PATH%;C:\mysoft\python\;C:\mysoft\python\scripts\;”
  4. 安装pip:下载 https://bootstrap.pypa.io/get-pip.py
  5. 本地运行get-pip.py :  setpyvar.bat; python get-pip.py
  6. 打开 C:\mysoft\python\python37._pth文件,去掉 import site 前面的注释,并保存
  7. 创建 c:\mysoft\python\sitecustomize.py文件,添加如下两行:

[code language=”python”]

import sys
sys.path.insert(0, ”)

[/code]

 

No Comments

No comments yet.

RSS feed for comments on this post.

Sorry, the comment form is closed at this time.

Powered by WordPress