Ubuntu安装Python
0.安装依赖
apt-get update
apt-get upgrade -y
apt-get install -y vim
apt-get -y install wget
apt-get -y install make
apt-get -y install gcc
1.下载安装Python
wget http://www.python.org/ftp/python/3.6.0/Python-3.6.0.tar.xz
tar -zxvf Python-3.6.0.tar.xz
cd Python-3.6.0/
./configure --prefix=/home/ihou/Python
make
make install
2.配置环境(当前)
vi .bash_profile
export PATH="$PATH: /home/ihou/Python/bin"
source .bash_profile
在 linux中设置环境变量一般使用bash_profile进行配置 其中/etc/bash_profile 表示系统整体设置 ,生效后系统内所有用户可用 而 ~/.bash_profile 只表示当前用户的个人设置,生效后只该用户可用。
3.配置环境(全局)
vim /etc/profile
Python_HOME=/usr/local/Python
PATH=$PATH:$Python_HOME/bin
source /etc/profile
4. 命令
Python --version
whereis python
which python
5.安装Python工具包
apt-get -y install pip
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
pip install numpy
pip install pandas
|