有些时候,我们用pip install *** 难免发生意外,可以采用安装whl的方法,不过... 有时候出现如: whl is not a supported wheel on this platform PS C:\Users\Administrator> python Python 3.7.0a2 (v3.7.0a2:f7ac4fe, Oct 17 2017, 16:23:57) [MSC v.1900 32 bit (Intel)] on win32 Type "help"…
1.首先强烈推荐一个站点 在使用pip安装python协程包gevent时,需要很多依赖,很多需要编译的底层支持等等,不能拿来就用.总之很多麻烦的事儿. 这个强烈推荐一个站点,里面都是一些编译好的python包,十分方便. http://www.lfd.uci.edu/~gohlke/pythonlibs/ 2.whl is not a supported wheel on this platform. 我在该站点上下载了一个gevent-1.0.1-cp27-none-win32.whl包之后…
python下载python安装包 https://www.lfd.uci.edu/~gohlke/pythonlibs/#pygame 下载完后进入cmd命令行执行安装,报错: pygame-1.9.4-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform.Storing debug log for failure in C:\Users\yinrongwei\pip\pip.log 解决办法:在python的sh…
在Ubuntu系统中,使用pip安装whl包时,常常会报如下错误: tensorflow_gpu-1.11.0-cp35-cp35m-manylinux1_x86_64.whl is not a supported wheel on this platform. 这是因为该whl包不满足系统的命名规则,下面是查看满足系统命名规则的命令:首先进入python3,然后输入以下命令 >>> import pip >>> print(pip.pep425tags.get_sup…
之前电脑安装的是python3.4,因为需要安装了python2,在用:LFD 安装whl是,每次都会提示 whl is not a supported wheel on this platform,然后把python3.4从环境变量中移除,还是不能,因为电脑是64的所以一直安装的是64位的包,但是看了博文,原来电脑要装32位的包,转换之后都能安装成功~…