Python-Linux上安装Python
Posted YJ.li
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python-Linux上安装Python相关的知识,希望对你有一定的参考价值。
Linux 上安装 Python
官网下载:https://www.python.org/downloads/
本文安装包下载链接:https://pan.baidu.com/s/1uL2JyoY_gClfOtyH0CcjfA 提取码:elan
详细操作步骤
1、安装相关插件
[[email protected] ~]# yum install zlib-devel openssl openssl-devel gcc
2、安装python
[[email protected] ~]# tar xf Python-3.6.3.tar.xz -C /usr/src/
[[email protected] ~]# cd /usr/src/Python-3.6.3/
[[email protected] Python-3.6.3]# ./configure --enable-optimizations
[[email protected] Python-3.6.3]# make && make install
3、安装完成后做个软链接方便调用
[[email protected] Python-3.6.3]# ln -s /usr/local/bin/python3.6 /bin/ [[email protected] Python-3.6.3]# ln -s /usr/local/bin/pip3.6 /bin/
4、测试是否安装成功
[[email protected] Python-3.6.3]# python3.6 Python 3.6.3 (default, Nov 1 2018, 12:19:44) [GCC 4.8.5 20150623 (Red Hat 4.8.5-28)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> print("hello world") hello world
以上是关于Python-Linux上安装Python的主要内容,如果未能解决你的问题,请参考以下文章