hellow 运维
分类: 系统运维
2016-09-27 10:25:51
[root@hanye147 ~]# yum install gcc make openssl openssl-devel zlib* -y |
[root@hanye147 ~]# curl -Lk | xz -d | tar x -C ./ && cd Python-3.4.5/ |
[root@hanye147 ~/Python-3.4.5]# ./configure --prefix=/usr/local/python_3.4.5 && make -j $(awk '/processor/{i++}END{print i}' /proc/cpuinfo) && make install |
[root@hanye147 ~/Python-3.4.5]# echo 'export PATH=/usr/local/python_3.4.5/bin:$PATH' > /etc/profile.d/py3.sh && . /etc/profile.d/py3.sh |
[root@hanye147 ~/Python-3.4.5]# curl | python3.4 |
[root@hanye147 ~/Python-3.4.5]# pip3 install jupyter |
[root@hanye147 ~/Python-3.4.5]# ipython -c "print ('hello')" |
hello |
[root@hanye147 ~/Python-3.4.5]# ipython -V |
5.1.0 |