博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python学习笔记-编译安装Python3.6.1 + iPython
阅读量:6074 次
发布时间:2019-06-20

本文共 1135 字,大约阅读时间需要 3 分钟。

由于系统已有2.6的python,最好不好修改系统的版本,使用编译安装

下载Python3.6.1包

1
wget https:
//www
.python.org
/ftp/python/3
.6.1
/Python-3
.6.1.
tar
.xz

安装依赖:

1
yum -y 
install 
readline-devel

解压Python-3.6.1.tar.xz

1
xz -d Python-3.6.1.
tar
.xztar -xvf Python-3.6.1.
tar

编译安装,指定/usr/local/python361目录

1
cd 
Python-3.6.1.
/configure 
--prefix=
/usr/local/python361make 
&& 
make 
install

创建软链接

1
[root@kurol bin]
# ln -s /usr/local/python361/bin/python3.6 /usr/bin/python36

 

安装ipython,使用国内豆瓣源,速度快。

1
python36 -m easy_install -i http:
//pypi
.douban.com
/simple/ 
ipython

 

测试ipython

1
2
3
4
5
6
7
[root@kurol ~]
# ipython
/
usr
/
local
/
python361
/
lib
/
python3.
6
/
site
-
packages
/
ipython
-
6.1
.
0
-
py3.
6.egg
/
IPython
/
core
/
history.py:
226
: UserWarning: IPython History requires SQLite, your history will 
not 
be saved
 
warn(
"IPython History requires SQLite, your history will not be saved"
)
Python 
3.6
.
1 
(default, Jun 
1 
2017
11
:
21
:
44
Type 
'copyright'
'credits' 
or 
'license' 
for 
more information
IPython 
6.1
.
0 
-
- 
An enhanced Interactive Python. 
Type 
'?' 
for 
help
.
In [
1
]:



 

      本文转自谢育政 51CTO博客,原文链接:http://blog.51cto.com/kurolz/1935018,如需转载请自行联系原作者

你可能感兴趣的文章
H3C AP胖转瘦方法大全
查看>>
基于tcp/ip以太网通信实现0-5v,4-20ma模拟量AI采集以及模拟量AO输出控制-综科智控...
查看>>
PHP执行系统命令的有几个常用的函数
查看>>
lnmp命令整理
查看>>
SparkStreaming基础理论
查看>>
程序员笔记|Sharding-JDBC 使用入门和基本配置
查看>>
关于安装H3c Cloud Lab的一些报错问题
查看>>
java中split()方法中以"* ^ : | , ."作为分隔符的处理方法
查看>>
我国大数据未来的发展方向
查看>>
C语言学生成绩管理系统
查看>>
powershell远程检查多个oracle数据库表空间使用率
查看>>
C链表
查看>>
Oracle教程之分析Oracle索引扫描四大类
查看>>
2016.8.23_每日IT单词
查看>>
Centos/ubuntu配置SVN服务
查看>>
lgwr,dbwr,chpk
查看>>
一个游戏程序员的学习资料
查看>>
ORACLE RAC均衡负载
查看>>
Memcached 安装脚本(附服务器自启动)
查看>>
MySQL学习笔记汇总
查看>>