Skip to content

Instantly share code, notes, and snippets.

@galanteh
Created July 12, 2019 14:48
Show Gist options
  • Save galanteh/37c18938734e7f215e49c77e1a22822e to your computer and use it in GitHub Desktop.
Save galanteh/37c18938734e7f215e49c77e1a22822e to your computer and use it in GitHub Desktop.
Installing Python3.6 in Centos7
#! /bin/bash
sudo yum install -y epel-release
sudo yum install -y python36
sudo yum install -y python36-devel
sudo yum install -y python36-pip
sudo yum install -y python36-setuptools
sudo easy_install-3.6 pip
sudo python3.6 -m pip install --upgrade pip setuptools wheel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment