1、python与ipython的下载与安装

1、ipython的下载与安装

下载链接:

https://github.com/ipython/ipython/releases

https://pypi.org/project/ipython/#files  ##我下在的是ipython-6.5.0.tar.gz

安装:

tar zxf ipython-6.5.0.tar.gz -C ./

cd ipython-6.5.0

python setup.py build

python setup.py install

python setupegg.py build

python setupegg.py install

2、python的下载与安装

下载:

https://www.python.org/ftp/python

安装:

tar -zxvf  Python-3.6.1.tar.xz
cd Python-3.6.1
./configure --prefix=/usr/local/python3
make && make install
ln -s /usr/local/python3/bin/* /usr/local/bin/
 

猜你喜欢

转载自www.cnblogs.com/renping/p/9571124.html