安装anaconda和jupyter

anaconda是python科学技术包的合集,很强大,很方便,多平台,而且python2.6,2.7,3.3,3.4都支持。

1 下载anaconda

32位版本:

wget https://3230d63b5fc54e62148e-c95ac804525aac4b6dba79b00b39d1d3.ssl.cf1.rackcdn.com/Anaconda-2.3.0-Linux-x86.sh

64位版本:

wget https://3230d63b5fc54e62148e-c95ac804525aac4b6dba79b00b39d1d3.ssl.cf1.rackcdn.com/Anaconda-2.3.0-Linux-x86.sh

2 安装

32位版本:

bash Anaconda-2.3.0-Linux-x86.sh

64位版本:

bash Anaconda-2.3.0-Linux-x86_64.sh

3 更新

conda update anaconda

需要一些时间,玩会手机吧~

安装完了anaconda安装一些库就很方便了,如

conda install ***

Jupyter在anaconda安装好了装就只需要:

conda install jupyter

安装完了执行:

jupyter notebook

会弹出浏览器,bingo~开启你的python之旅吧。

你可能感兴趣的:(工具学习,anaconda,python,jupyter)