一、安装anaconda
下载anaconda安装包 (wget -P filepath 下载链接)
sh Anaconda3-5.3.1-Linux-x86_64.sh (一律yes就好了) vim /etc/profile (文件中添加 export PATH=/root/anaconda3/bin:$PATH) source /etc/profile (或 . /etc/profile)
报错:bunzip2: command not found 解决:yum install -y bzip2
pip install --upgrade pip #更新pip
pip install --default-timeout=1000 --no-cache-dir -r requirements.txt #pip安装超时解决方法
二、直接安装python
#下载 wget https://www.python.org/ftp/python/3.6.2/Python-3.6.2.tar.xz mkdir /usr/local/python3 #解压缩+安装 tar -xvJf Python-3.6.2.tar.xz cd Python-3.6.2 ./configure --prefix=/usr/local/python3 #执行配置生成命令,生成makefile文件 make && make install #根据makefile文件,系统进行编译,并将生成后的python发布到相应的系统目录 #创建软连接 -- 类似windows的快捷方式 ln -s /usr/local/python3/bin/python3 /usr/bin/python3 ln -s /usr/local/python3/bin/pip3 /usr/bin/pip3 #测试 python3