Python-Linux上安装Python
程序员文章站
2022-04-04 09:56:49
Linux 上安装 Python 官网下载:https://www.python.org/downloads/ 本文安装包下载链接:https://pan.baidu.com/s/1uL2JyoY_gClfOtyH0CcjfA 提取码:elan 详细操作步骤 1、安装相关插件 2、安装python ......
linux 上安装 python
官网下载:
本文安装包下载链接:https://pan.baidu.com/s/1ul2jyoy_gclfotyh0ccjfa 提取码:elan
详细操作步骤
1、安装相关插件
[root@bj ~]# yum install zlib-devel openssl openssl-devel gcc
2、安装python
[root@bj ~]# tar xf python-3.6.3.tar.xz -c /usr/src/
[root@bj ~]# cd /usr/src/python-3.6.3/
[root@bj python-3.6.3]# ./configure --enable-optimizations
[root@bj python-3.6.3]# make && make install
3、安装完成后做个软链接方便调用
[root@bj python-3.6.3]# ln -s /usr/local/bin/python3.6 /bin/ [root@bj python-3.6.3]# ln -s /usr/local/bin/pip3.6 /bin/
4、测试是否安装成功
[root@bj 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