
Python基本环境配置安装Python3.6Ubuntuapt-get install software-properties-commomadd-apt-repository ppa:jonathonf/python-3.6apt-get updateapt-get install python3.6创建软连接which pythoncd /usr/binrm pythonrm python3ln -s python3.6 pythonln -s python3.6 python3安装pip3.6Ubuntuapt-get install python3-pippip3 install --upgrade pip安装虚拟环境pip3 install virtualenv创建虚拟环境virtualenv mysite_envsource mysite_env/bin/activatedeactivatepip安装所需的库文件pip install -r requirememt.txt