美文网首页
Centos7 yum安装Python3.6环境

Centos7 yum安装Python3.6环境

作者: 搬砖_工程师 | 来源:发表于2019-02-03 18:46 被阅读4次

配置好Python3.6和pip3
安装EPEL和IUS软件源

yum install epel-release -y
yum install https://centos7.iuscommunity.org/ius-release.rpm -y
安装Python3.6

yum install python36u -y
创建python3连接符

ln -s /bin/python3.6 /bin/python3
安装pip3

yum install python36u-pip -y
创建pip3链接符

ln -s /bin/pip3.6 /bin/pip3

相关文章

  • python安装

    说明:基于现有的服务器系统环境– Centos7 ,使用 yum 安装 python3.6 和 pip · 主要目...

  • Docker初识

    系统环境:CentOS7 安装命令:yum install docker 系统环境:Ubuntu 14.04 安装...

  • Centos7通过yum安装python 3.6

    Centos7通过yum安装python 3.6 ​ Centos默认的源里面没有python3.6,想要通过yu...

  • Docker安装和启动

    1 Docker安装 安装环境:centos7 1.1 检查yum更新 1.2 安装要依赖的包,yum-utils...

  • centos下搭建ftp服务器

    环境:Centos7 (192.168.2.171) 1、安装 VSFTPD服务 使用 yum 安装 vsftpd...

  • firewall 基本使用

    环境:CentOS7 安装&启动 安装:yum install firewalld 启动: systemctl s...

  • bookStack搭建知识管理

    环境:CentOS7 安装Docker和Compose 安装Docker yum install -y docke...

  • Openstack 安装

    1.环境准备 centos7 1.1、yum安装设置 yum list |grep openstackcentos...

  • 安装 tesseract

    1 环境 Centos7中使用yum安装 tesseract 2 安装epel 源 3 安装 tesseract ...

  • centos7 yum安装python3 和pip3

    最简单的办法1.yum源是支持python3.6,命令yum install -y python36 2.安装环境...

网友评论

      本文标题:Centos7 yum安装Python3.6环境

      本文链接:https://www.haomeiwen.com/subject/xhfusqtx.html