python学习中的笔记

重点:很多都摘自别人,故无版权!!!!

我安装了anaconda python3.6和pycharm

1)conda install--和pip install --都无法安装第三方包时,就要去https://www.lfd.uci.edu/~gohlke/pythonlibs/ 搜索下载相应的包自己安装了,而且需要下载一个正确的版本,负责会出现如“python_hdf4-0.9.1-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform.”类的错误。如何知道那个版本是适合自己机器的呢?

在shell中输入:

import pip

print(pip.pep425tags.get_supported())

就可以打印出支持的自己版本了

你可能感兴趣的:(python学习中的笔记)