Home > Article > Backend Development > Some deployment commands for Centos Python production environment
This article mainly introduces some deployment commands for the Centos Python production environment. It is very good and has reference value. Friends who need it can refer to it
Just notes
Get one After clean centos, initialize the Python environment, just some commands and problem records
Can be made into a script for automatic initialization, of course, it is better to use docker
sudo adduser newuser sudo passwd newuser # 设置授权不需要输入密码 sudo /usr/sbin/visudo newuser ALL=NOPASSWD: ALL
wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm sudo rpm -Uvh epel-release-6*.rpm
wget http://dl.iuscommunity.org/pub/ius/stable/CentOS/6/x86_64/ius-release-1.0-13.ius.centos6.noarch.rpm sudo rpm -Uvh ius-release-1.0-13.ius.centos6.noarch.rpm
sudo yum install python27 sudo yum install python27-devel then curl https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py | sudo /usr/bin/python2.7 - # pip curl https://raw.githubusercontent.com/pypa/pip/master/contrib/get-pip.py | sudo /usr/bin/python2.7 - extra: install python3 sudo yum install python34u python34u-devel
sudo pip install virtualenv
ssh-keygen -t rsa add ~/.ssh/id_rsa.pub to git or github
sudo yum install mysql sudo yum install mysql-devel* -y sudo yum install mysql-server sudo /sbin/service mysqld start
pip error: ImportError: cannot import name HTTPSHandler
##yum install openssl openssl-devel -y
see in sof
MySQL-python
_mysql.c:2642: error: (near initialization for '_mysql_ResultObject_memberlist[0].offset')
_mysql.c: In function '_mysql_ConnectionObject_getattr': _mysql.c:2666: error: '_mysql_ConnectionObject' has no member named 'open'
error: command 'gcc' failed with exit status 1
---------------------------------- -------
Command "/data/home/alarm/env/bin/python -c "import setuptools, tokenize;__file__='/tmp/pip-build-HgXAQT/MySQL-python/setup. py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install - -record /tmp/pip-kx2cSu-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-build-HgXAQT/MySQL-python
yum install mysql-devel
Related recommendations:
Instance of using ip proxy pool to randomly generate IP in python3 requests
The above is the detailed content of Some deployment commands for Centos Python production environment. For more information, please follow other related articles on the PHP Chinese website!