您的位置:首页 > 编程语言 > Python开发

Python应用--系统学习python+安装whl包

2017-11-28 21:07 423 查看
系统学习python

知乎:python优秀回答----如何系统地学习python
https://www.zhihu.com/question/29138020
Jupyter
http://nbviewer.jupyter.org/ http://nbviewer.jupyter.org/gist/darribas/4121857 http://nbviewer.jupyter.org/github/lijin-THU/notes-python/blob/master/06-matplotlib/06.10-different-plots.ipynb
github:
https://github.com/lijin-THU/notes-python/blob/master/06-matplotlib/06.10-different-plots.ipynb
安装whl包的步骤

1.whl包下载路径:https://www.lfd.uci.edu/~gohlke/pythonlibs/

2.安装pip工具:在cmd窗口中,cd跳转到python的安装路径下,然后在cmd窗口中easy_install.exe  pip 即可。

3.执行: pip install wheel (在cmd窗口中)

  之后再在cmd窗口中输入  pip install xx.whl ,即可安装某模块包;

4.接下来即可在python编辑器中调用了。(如  import pygame)

如:  pygame-1.9.3-cp36-cp36m-win_amd64.whl
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  Python cmd 基础