Python 3.5.2使用apt

时间:2019-02-22 17:02:33

标签: python ubuntu cherrypy

我用CherryPy为Python开发了一个小型Web应用程序。我想在带有ubuntu 16.04的生产服务器上运行它。我的系统管理员告诉我,我不会使用pip或github存储库,因为...除了使用apt之外,其他都有些问题...他说。

是否可以通过apt为python3获取最新的信息?

2 个答案:

答案 0 :(得分:0)

在Ubuntu上绝对完美地安装了Cherrypy。 这是我在服务器上完成的操作:

首次安装pip

sudo apt-get install python-pip

OR

sudo apt install python-pip

针对Python3的OR(尝试apt或apt-get)

sudo apt install python3-pip 

安装pip 后,安装cherrypy

pip install cherrypy

确保已安装python并根据python版本安装pip。安装pip后,一切都会好起来。这在我的Ubuntu服务器上对我有用。

答案 1 :(得分:0)

在Ubuntu 16.04上使用python3(Python 3.5.2)的解决方案:

为python3安装虚拟环境

sudo apt-get install python3-venv

为您的环境创建一个文件夹

mkdir环境

创建环境

python3 -m venv环境

更改到文件夹

cd环境/ bin

激活环境

源激活

在环境中安装pip

易于安装python3-pip

安装cherrypy> = 18.1.0

pip3安装cherrypy

运行程序

python3 ./my_python_script.py