我用 CherryPy 为 Python 开发了一个小型网络应用程序。我想在带有 ubuntu 16.04 的生产服务器上运行它。我的系统管理员告诉我,我不会使用 pip 或 github 存储库,因为……使用 apt 以外的任何东西都有问题……他说。有没有办法用 apt 为 python3 获取最近的cherrypy?
2 回答
至尊宝的传说
TA贡献1789条经验 获得超10个赞
在 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。安装pip后,一切都会好起来的。这适用于我的 Ubuntu 服务器。
沧海一幻觉
TA贡献1824条经验 获得超5个赞
在 Ubuntu 16.04 上使用 python3 (Python 3.5.2) 的解决方案:
为python3安装虚拟环境
须藤 apt-get 安装 python3-venv
为您的环境创建一个文件夹
mkdir 环境
创造环境
python3 -m venv环境
进入文件夹
cd 环境/bin
激活环境
源激活
在 env 中安装 pip
apt安装python3-pip
安装樱桃 >= 18.1.0
pip3 安装cherrypy
运行程序
python3 ./my_python_script.py
添加回答
举报
0/150
提交
取消