python升级到3.7.3
操作系统:centos everything
wget https://www.python.org/ftp/python/3.7.3/Python-3.7.3.tgz
tar zxvf Python-3.7.3.tgz
cd Python-3.7.3/
./configure --with-ssl
【attention: the option --with-ssl in order to avoid install error when using pip install】
make
make install
rm -rf /usr/bin/python
rm -rf /usr/bin/pip
ln -s /usr/local/bin/python3.7 /usr/bin/python3
ln -s /usr/local/bin/pip3.7 /usr/bin/pip