Centos6 安装python3 pip3 ipython3

2024-08-21 04:18

本文主要是介绍Centos6 安装python3 pip3 ipython3,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

访问官网查看python 3.6.x 系列有什么安装包

因为是Centos6,前面安装3.7.x系列在SSL这块有些问题,考虑使用3.6.x系列看看。

访问官网下载地址:https://www.python.org/downloads/source/

13423234-4f1abb3cb8992f97.png

安装系统依赖

[root@centos6 Python-3.6.8]# yum install zlib-devel bzip2-devel openssl-devel ncurses-devel -y

下载python3.6.x的安装包

[root@centos6 opt]# wget https://www.python.org/ftp/python/3.6.8/Python-3.6.8.tgz

安装过程

[root@centos6 opt]# tar -zxvf Python-3.6.8.tgz 
[root@centos6 Python-3.6.8]# ./configure --prefix=/usr/local/python3
[root@centos6 Python-3.6.8]# make && make install

设置环境

安装完毕之后,文件会在/usr/local/python3/bin/路径下。

[root@centos6 Python-3.6.8]# ls /usr/local/python3/bin/
2to3      easy_install-3.6  idle3.6  pip3.6  pydoc3.6  python3.6         python3.6m         python3-config  pyvenv-3.6
2to3-3.6  idle3             pip3     pydoc3  python3   python3.6-config  python3.6m-config  pyvenv
[root@centos6 Python-3.6.8]# 
[root@centos6 bin]# ./python3.6
Python 3.6.8 (default, Apr 23 2019, 14:53:03) 
[GCC 4.4.7 20120313 (Red Hat 4.4.7-23)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()
[root@centos6 bin]# 
[root@centos6 bin]# ./pip3 search redis
redis (3.2.1)                     - Python client for Redis key-value store
redis-completion (0.5.0)          - autocomplete with redis

设置软连接
ln -s /usr/local/python3/bin/python3.6 /usr/bin/python3.6
ln -s /usr/local/python3/bin/pip3 /usr/bin/pip3

设置之后,就可以全局使用了,如下:

[root@centos6 bin]# ln -s /usr/local/python3/bin/python3.6 /usr/bin/python3.6
[root@centos6 bin]# ln -s /usr/local/python3/bin/pip3 /usr/bin/pip3
[root@centos6 bin]# 
[root@centos6 bin]# cd ~
[root@centos6 ~]# ls
anaconda-ks.cfg  Desktop  Documents  Downloads  gitbook  install.log  install.log.syslog  Music  netperf-2.6.0-2.gf.el6.x86_64.rpm  Pictures  Public  Templates  tmp  Videos
[root@centos6 ~]# python3.6
Python 3.6.8 (default, Apr 23 2019, 14:53:03) 
[GCC 4.4.7 20120313 (Red Hat 4.4.7-23)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> exit
Use exit() or Ctrl-D (i.e. EOF) to exit
>>> exit()
[root@centos6 ~]# pip3 search redis
redis (3.2.1)                     - Python client for Redis key-value store
redis-completion (0.5.0)          - autocomplete with redis
kinto-redis (2.0.0)               - Kinto Redis

升级pip3到最新版本

pip3 install --upgrade pip

[root@centos6 ~]# pip3 install --upgrade pip
Collecting pipDownloading https://files.pythonhosted.org/packages/d8/f3/413bab4ff08e1fc4828dfc59996d721917df8e8583ea85385d51125dceff/pip-19.0.3-py2.py3-none-any.whl (1.4MB)100% |████████████████████████████████| 1.4MB 122kB/s 
Installing collected packages: pipFound existing installation: pip 18.1Uninstalling pip-18.1:Successfully uninstalled pip-18.1
Successfully installed pip-19.0.3
[root@centos6 ~]# 

安装ipython3

pip3 install ipython

安装完毕后,可以从/usr/local/python3/bin目录下找到ipython的二进制可执行文件。

[root@centos6 ~]# cd /usr/local/python3/bin
[root@centos6 bin]# ls
2to3      easy_install-3.6  idle3.6  iptest3  ipython3  pip3    pydoc3    pygmentize  python3.6         python3.6m         python3-config  pyvenv-3.6
2to3-3.6  idle3             iptest   ipython  pip       pip3.6  pydoc3.6  python3     python3.6-config  python3.6m-config  pyvenv
[root@centos6 bin]# ./ipython
/usr/local/python3/lib/python3.6/site-packages/IPython/core/history.py:226: UserWarning: IPython History requires SQLite, your history will not be savedwarn("IPython History requires SQLite, your history will not be saved")
Python 3.6.8 (default, Apr 23 2019, 14:53:03) 
Type 'copyright', 'credits' or 'license' for more information
IPython 7.4.0 -- An enhanced Interactive Python. Type '?' for help.In [1]:    

配置ipython3的软链接

ln -s /usr/local/python3/bin/ipython /usr/bin/ipython3

[root@centos6 bin]# ln -s /usr/local/python3/bin/ipython /usr/bin/ipython3
[root@centos6 bin]# 
[root@centos6 bin]# cd ~
[root@centos6 ~]# 
[root@centos6 ~]# ls
anaconda-ks.cfg  Desktop  Documents  Downloads  gitbook  install.log  install.log.syslog  Music  netperf-2.6.0-2.gf.el6.x86_64.rpm  Pictures  Public  Templates  tmp  Videos
[root@centos6 ~]# 
[root@centos6 ~]# ipython3
/usr/local/python3/lib/python3.6/site-packages/IPython/core/history.py:226: UserWarning: IPython History requires SQLite, your history will not be savedwarn("IPython History requires SQLite, your history will not be saved")
Python 3.6.8 (default, Apr 23 2019, 14:53:03) 
Type 'copyright', 'credits' or 'license' for more information
IPython 7.4.0 -- An enhanced Interactive Python. Type '?' for help.In [1]:      

Centos6 对于python3的兼容性

经过了Centos6对于python 3.7.x 和 python 3.6.x 的安装对比,还是使用python 3.6.x的兼容性最好。

13423234-0e3934319aa622f6.png

这篇关于Centos6 安装python3 pip3 ipython3的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1092100

相关文章

python管理工具之conda安装部署及使用详解

《python管理工具之conda安装部署及使用详解》这篇文章详细介绍了如何安装和使用conda来管理Python环境,它涵盖了从安装部署、镜像源配置到具体的conda使用方法,包括创建、激活、安装包... 目录pytpshheraerUhon管理工具:conda部署+使用一、安装部署1、 下载2、 安装3

龙蜥操作系统Anolis OS-23.x安装配置图解教程(保姆级)

《龙蜥操作系统AnolisOS-23.x安装配置图解教程(保姆级)》:本文主要介绍了安装和配置AnolisOS23.2系统,包括分区、软件选择、设置root密码、网络配置、主机名设置和禁用SELinux的步骤,详细内容请阅读本文,希望能对你有所帮助... ‌AnolisOS‌是由阿里云推出的开源操作系统,旨

Ubuntu系统怎么安装Warp? 新一代AI 终端神器安装使用方法

《Ubuntu系统怎么安装Warp?新一代AI终端神器安装使用方法》Warp是一款使用Rust开发的现代化AI终端工具,该怎么再Ubuntu系统中安装使用呢?下面我们就来看看详细教程... Warp Terminal 是一款使用 Rust 开发的现代化「AI 终端」工具。最初它只支持 MACOS,但在 20

mysql-8.0.30压缩包版安装和配置MySQL环境过程

《mysql-8.0.30压缩包版安装和配置MySQL环境过程》该文章介绍了如何在Windows系统中下载、安装和配置MySQL数据库,包括下载地址、解压文件、创建和配置my.ini文件、设置环境变量... 目录压缩包安装配置下载配置环境变量下载和初始化总结压缩包安装配置下载下载地址:https://d

LinuxMint怎么安装? Linux Mint22下载安装图文教程

《LinuxMint怎么安装?LinuxMint22下载安装图文教程》LinuxMint22发布以后,有很多新功能,很多朋友想要下载并安装,该怎么操作呢?下面我们就来看看详细安装指南... linux Mint 是一款基于 Ubuntu 的流行发行版,凭借其现代、精致、易于使用的特性,深受小伙伴们所喜爱。对

Linux(Centos7)安装Mysql/Redis/MinIO方式

《Linux(Centos7)安装Mysql/Redis/MinIO方式》文章总结:介绍了如何安装MySQL和Redis,以及如何配置它们为开机自启,还详细讲解了如何安装MinIO,包括配置Syste... 目录安装mysql安装Redis安装MinIO总结安装Mysql安装Redis搜索Red

python安装完成后可以进行的后续步骤和注意事项小结

《python安装完成后可以进行的后续步骤和注意事项小结》本文详细介绍了安装Python3后的后续步骤,包括验证安装、配置环境、安装包、创建和运行脚本,以及使用虚拟环境,还强调了注意事项,如系统更新、... 目录验证安装配置环境(可选)安装python包创建和运行Python脚本虚拟环境(可选)注意事项安装

gradle安装和环境配置全过程

《gradle安装和环境配置全过程》本文介绍了如何安装和配置Gradle环境,包括下载Gradle、配置环境变量、测试Gradle以及在IntelliJIDEA中配置Gradle... 目录gradle安装和环境配置1 下载GRADLE2 环境变量配置3 测试gradle4 设置gradle初始化文件5 i

Jsoncpp的安装与使用方式

《Jsoncpp的安装与使用方式》JsonCpp是一个用于解析和生成JSON数据的C++库,它支持解析JSON文件或字符串到C++对象,以及将C++对象序列化回JSON格式,安装JsonCpp可以通过... 目录安装jsoncppJsoncpp的使用Value类构造函数检测保存的数据类型提取数据对json数

mac安装redis全过程

《mac安装redis全过程》文章内容主要介绍了如何从官网下载指定版本的Redis,以及如何在自定义目录下安装和启动Redis,还提到了如何修改Redis的密码和配置文件,以及使用RedisInsig... 目录MAC安装Redis安装启动redis 配置redis 常用命令总结mac安装redis官网下