Windows下使用Python注意的问题
1.在Windows下安装完Python3(https://www.python.org/downloads/release/python-364/),如果发现缺少
api-ms-win-crt-runtime 运行库,那么可以上微软的网站上下载一个vcredit.exe来安装解决问题。
链接:https://www.microsoft.com/zh-cn/download/details.aspx?id=48145\
2.安装用python3后,应该是带用pip的,但名字变成了pip3,程序在安装目录的Scripts下。
所以配置Windows的Path环境变量时要将它也配置上去,例如:
C:\Users\Administrator\AppData\Local\Programs\Python\Python36-32
C:\Users\Administrator\AppData\Local\Programs\Python\Python36-32\Scripts
同时,可以通过命令行看一下 pip 有没有安装:
python -m ensurepip
3.要用Win32Com这个包的程序,需要安装 pywin32这个套件,可以从
https://github.com/mhammond/pywin32/releases
1.在Windows下安装完Python3(https://www.python.org/downloads/release/python-364/),如果发现缺少
api-ms-win-crt-runtime 运行库,那么可以上微软的网站上下载一个vcredit.exe来安装解决问题。
链接:https://www.microsoft.com/zh-cn/download/details.aspx?id=48145\
2.安装用python3后,应该是带用pip的,但名字变成了pip3,程序在安装目录的Scripts下。
所以配置Windows的Path环境变量时要将它也配置上去,例如:
C:\Users\Administrator\AppData\Local\Programs\Python\Python36-32
C:\Users\Administrator\AppData\Local\Programs\Python\Python36-32\Scripts
同时,可以通过命令行看一下 pip 有没有安装:
python -m ensurepip
3.要用Win32Com这个包的程序,需要安装 pywin32这个套件,可以从
https://github.com/mhammond/pywin32/releases
下载,下载后安装如果提示没有找到python的安装路径,是因为python3的安装程序没有在注册表中注册好,运行以下程序就好
import sys
from winreg import *
# tweak as necessary
version = sys.version[:3]
installpath = sys.prefix
regpath = "SOFTWARE\\Python\\Pythoncore\\%s\\" % (version)
installkey = "InstallPath"
pythonkey = "PythonPath"
pythonpath = "%s;%s\\Lib\\;%s\\DLLs\\" % (
installpath, installpath, installpath
)
def RegisterPy():
try:
reg = OpenKey(HKEY_CURRENT_USER, regpath)
except EnvironmentError as e:
try:
reg = CreateKey(HKEY_CURRENT_USER, regpath)
SetValue(reg, installkey, REG_SZ, installpath)
SetValue(reg, pythonkey, REG_SZ, pythonpath)
CloseKey(reg)
except:
print ("*** Unable to register!")
return
print (" Python", version, "is now registered!")
return
if (QueryValue(reg, installkey) == installpath and
QueryValue(reg, pythonkey) == pythonpath):
CloseKey(reg)
print ("=== Python", version, "is already registered!")
return
CloseKey(reg)
print ("*** Unable to register!")
print ("*** You probably have another Python installation!")
if __name__ == "__main__":
RegisterPy()