Windows下使用Python注意的问题

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

下载,下载后安装如果提示没有找到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() 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值