安装.whl是遇到的问题
已经安装了wheel文件打不开.whl,总是询问你要以何种方式打开.whl文件 安装的是wheel0.33.6 试试在cmd窗口 pip install whl文件 pip install whl 输入后显示ERROR: Could not find a version that satisfies the requirement whl (from versions: none)
ERROR: No matching distribution found for whl zhongyong6899 发表于 2019-12-9 17:52
pip install whl 输入后显示
ERROR: Could not find a version that satisfies the requirement whl (f ...
你下载的 whl 与你电脑中装的 Python 的版本不匹配,需要安装匹配你 Python 版本的 whl 文件。
现在cmd中输入pip install wheel,然后安装完成后cd到你的whl文件目录下,然后输入wheel install <文件名>.whl(这里不要改whl文件的名字,会报错)然后等一会就好了
安装Python库一般有三种方法:
1.直接pip install <库名字>
2.下载whl文件,按以上步骤安装
3.下载压缩包,解压后在cmd中运行setup.py
附带链接:https://blog.csdn.net/weixin_34293902/article/details/93880810?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522158521811219724835861165%2522%252C%2522scm%2522%253A%252220140713.130056874..%2522%257D&request_id=158521811219724835861165&biz_id=0&utm_source=distribute.pc_search_result.none-task
页:
[1]