Python3 安装
python3 安装指南
unbuntu
yum -y install openssl*
(pip 依赖 ssl 环境)编译安装 python3:
安装步骤: tar zxvf Python-3.5.2.tgz => cd Python-3.5.2 => ./configure => make && make install
安装 pip3:
sudo apt-get install python3-pip
centOs
安装 yum-utils, 用于管理 repository 及扩展包:
sudo yum install yum-utils
使用 yum-builddep 为 Python3 构建环境,安装缺失的软件依赖:
sudo yum-builddep python
下载对应版本的 Python 包:
curl -O https://www.python.org/ftp/python/3.5.0/Python-3.5.0.tgz
解压 Python 包:
tar xf Python-3.5.0.tgz
安装 Python:
cd Python-3.5.0
=>./configure
=>make
=>sudo make install
检测 Python 是否安装完成:
python3 -V
把 python3 作为默认版本:
vi /etc/profile.d/python.sh
=>alias python='/usr/local/bin/python3.5'
本文标题:Python3 安装
文章作者:Canace
发布时间:2019-01-06
最后更新:2023-05-26
原始链接:https://canace.site/python3%E5%AE%89%E8%A3%85/
版权声明:转载请注明出处
分享