Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 758 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 758 Bytes

jnan88.github.io

jnan88 github stats

排序算法动画:http://sorting.at/

IP签名

使用aliyun

sudo cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
sudo wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
sudo wget -P /etc/yum.repos.d/ http://mirrors.aliyun.com/repo/epel-7.repo
sudo yum clean all
sudo yum makecache

python3.6

wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tgz
tar zxvf Python-3.6.1.tgz
cd Python-3.6.1
./configure --prefix=/usr/local/python3
make
make install
``