anaconda(1)
2017-06-17
前面提到了Python的版本问题,今天我们来聊聊python的安装。
目前,如果让我推荐一位新手安装python的话,我一般会让其直接安装Anaconda,软件国内镜像清华源下载地址:https://mirrors.tuna.tsinghua.edu.cn/help/anaconda/。
为什么选择Anaconda,以下是我个人的使用推荐感受:
- 集成非常多常用的包,如
pandas, numpy, matplotlib, requests
. - 安装软件方便,除了可以使用python自有的
pip install PackageName
安装方式外,还可以使用conda install PackageName
方式。我就是用的conda install scrapy
安装的scrapy爬虫框架的。 - 集成Juypter Notebook,一个笔记型的Python交互环境,也是我目前最常使用的工作环境。
- 可以在一台电脑上同时安装多个虚拟内核环境,也就是你可以同时安装多个版本的python,如python3.6和python2.7. 除了python外,Anaconda还支持R、Octave、scala等诸多内核,绝对是入门首选的一个工具。Juypter kernels 详见网址:https://github.com/jupyter/jupyter/wiki/Jupyter-kernels。
装完软件,你是否苦恼于pip install
或者conda install
安装软件时候的下载速度呢?这是因为默认的下载服务器位于国外,所以要么你直接设置全局代理,要么修改一下默认更新源。
conda tsinghua源
终端分别运行以下2句命令:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
pip 阿里云源
一、Windows系统
文件位置事例:
C:\Users\lmingzhi\pip\pip.ini
%HOMEPATH%\pip\pip.ini
在用户文件夹下创建pip目录,并在pip目录下创建pip.ini文件(%HOMEPATH%\pip\pip.ini),文件中添加如下内容:
# 国内源
[global]
trusted-host=mirrors.aliyun.com
index-url=http://mirrors.aliyun.com/pypi/simple/
二、MacOS或linux系统
终端运行:
mkdir ~/.pip
vim ~/.pip/pip.conf
# 国内源
[global]
trusted-host=mirrors.aliyun.com
index-url=http://mirrors.aliyun.com/pypi/simple/
网友评论