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.
网友评论