美文网首页
随笔01:安装Python模块脚本

随笔01:安装Python模块脚本

作者: 杨强AT南京 | 来源:发表于2018-09-29 12:32 被阅读60次

    Python模块安装使用的是一个镜像,速度比官方的站点速度要快得多。

    下面是AI学习常见模块。其中kivy是一款基于OpenGL的GUI框架。

    下载地址:https://github.com/QiangAI/PythonSkill/tree/master/AdvPython

    文件:ai_install.sh

    pip install numpy -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

    pip  install scipy -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

    pip  install matplotlib -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

    pip  install opencv-python -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

    pip  install sklearn -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

    pip  install kivy -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

    pip  install pandas  -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

    pip  install tensorflow -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

    注意Tensorflow与Python的版本有关系的,如果提示找不到tensorflow,请去官网确认下tensorflow支持的对应Python版本。

    tensorflow下载的官网:https://pypi.org/project/tensorflow/#files

    下面红色标注部分就是版本信息。

    Tensorflow对应的版本

    相关文章

      网友评论

          本文标题:随笔01:安装Python模块脚本

          本文链接:https://www.haomeiwen.com/subject/nlnyoftx.html