ubuntu14.04安装Anaconda3

参考:https://blog.csdn.net/xiaerwoailuo/article/details/70054429

https://blog.csdn.net/Handsome_Sheng/article/details/72781272

https://www.cnblogs.com/YangQiaoblog/p/6739847.html

1:查看版本:python --version 
2:安装setuptools19.6  参考:https://blog.csdn.net/coder_oyang/article/details/72829380
终端下执行:
wget --no-check-certificate  https://pypi.python.org/packages/source/s/setuptools/setuptools-19.6.tar.gz
tar -zxvf setuptools-19.6.tar.gz
cd setuptools-19.6
python setup.py build
sudo python setup.py install

3: 安装pip-8.0.2 参考:https://blog.csdn.net/qq_26898461/article/details/51485491
终端下执行:

wget --no-check-certificate  https://pypi.python.org/packages/source/p/pip/pip-8.0.2.tar.gz
tar -zxvf pip-8.0.2.tar.gz
cd pip-8.0.2
python setup.py build
sudo python setup.py install

(也可以不执行以上三个步骤直接从第4步开始)
4:现在下载anaconda包,解压复制到ubuntu中用户文件夹中,

Anaconda来源 https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/
终端下执行bash Anaconda3-4.3.1-Linux-x86_64.sh 安装

安装过程中选择将anaconda添加到环境变量中去,默认是NO,选择YES

切换anaconda使用清华镜像,注意下面--是两个-:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ 
conda config --set show_channel_urls yes 

5:终端下输入python,进入到python中看到版本为anaconda3下的python3.6版本
6:终端下conda list查看安装的库,此时已经安装好了jupyter

7:终端下执行:jupyter notebook 即可在浏览器中打开
终端下执行:spyder  打开IDE

8:创建虚拟环境python27:参考https://blog.csdn.net/weixin_40321858/article/details/82888782

注:若Anaconda3下没有想要的模块,则在终端下执行:

conda install 模块名

安装即可

 

 

 

你可能感兴趣的:(智能机器人)