我用CherryPy for Python开发了一个小型的Web应用程序。我想在使用ubuntu 16.04的生产服务器上运行它。我的系统管理员告诉我,我不会使用pip或github存储库,因为...使用任何东西都有问题,但是...他说。
有没有办法获得最近的python3与apt的cherrypy?
在Ubuntu上安装cherrypy绝对没问题。听听我在服务器上做了什么:
首先安装pip
sudo apt-get install python-pip
要么
sudo apt install python-pip
或者Python3(尝试apt或apt-get)
sudo apt install python3-pip
安装pip
后,安装cherrypy
pip install cherrypy
确保你已经安装了python并基于python版本安装pip。安装点后,一切都会好的。这适用于我的Ubuntu服务器。
使用python3(Python 3.5.2)在Ubuntu 16.04上的解决方案:
sudo apt-get install python3-venv
mkdir环境
python3 -m venv环境
cd environment / bin
来源激活
apt安装python3-pip
pip3安装cherrypy
python3 ./my_python_script.py