美文网首页
python--安装

python--安装

作者: b485c88ab697 | 来源:发表于2017-09-04 23:15 被阅读5次

    python3 的安装

    • 下载Python (anaconda版本) 根据系统类型选择相应的安装版本就行,建议使用py3 64位版。

    • 开发工具pycharm,eclipse,jupyter notebook都可以,个人比较喜欢pycharm,notebook则可以把个人的一些思路和代码一步一步展示出来,适合分享给别人学习使用。

    • pycharm使用指南

    pip 安装包

    • 直接使用conda命令安装包,也可以使用anaconda自带的navigator进行环境和包的管理。

    • conda install xxx

    • conda update xxx 更新

    • conda update conda conda更新

    • conda update anaconda 更新anaconda

    如果遇到某些特殊的包安装不上

    • 这个网站或许可以帮到你

    pip 安装源的修改

    • 使用anaconda一般不存在此问题。

    • 如果因为校园网等原因非要换源 可以使用清华源

    • 在终端里复制以下代码

    • conda config --add channels 'https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/'

    • conda config --set show_channel_urls yes

    • Windows下就需要注意了,找到 “C:\Users\xxx.condarc” 文件,xxx代表你的windows帐户,对比里面的内容并修改为以下内容:

    • channels:

    • - "https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/"

    • - defaults

    • show_channel_urls: true

    Anaconda

    With over 4.5 million users, Anaconda is the world’s most popular and trusted data science ecosystem. We continue to innovate by leading development on open source projects that are the foundation of modern data science. We also offer products and services that help support, govern, scale, assure, customize and secure Anaconda for enterprises.

    以上语句来自anaconda的官网介绍,简而言之就是anaconda是一个python开源包,包含了科学计算绝大部分的包。

    不用再去考虑用python pip安装包时的各种报错异常,使用anaconda一次性安装到位。

    anaconda可以轻松实现py2与py3共存,网上有很多教程,可以参考,这里不再累述。

    相关文章

      网友评论

          本文标题:python--安装

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