在 Debian 服务器上安装 Flask 时出现问题

在 Debian 服务器上安装 Flask 时出现问题

我在我的服务器上安装 flask 时遇到了问题。

$ sudo pip3 install flask
Collecting flask
From cffi callback <function _verify_callback at 0x7f2798df7840>:
Traceback (most recent call last):
  File "/usr/local/lib/python3.5/dist-packages/OpenSSL/SSL.py", line 309, in wrapper
    _lib.X509_up_ref(x509)
AttributeError: module 'lib' has no attribute 'X509_up_ref'
  Could not find a version that satisfies the requirement flask (from versions: )
No matching distribution found for flask

我已经升级并更新了pip:

$ pip3 --version
pip 9.0.1 from /usr/lib/python3/dist-packages (python 3.5)

Debian 版本:

$ lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description:    Debian GNU/Linux 9.4 (stretch)
Release:    9.4
Codename:   stretch

Python 版本:

$ python3 --version
Python 3.5.3

我相信主要错误与 lib 模块有关,正如您在错误代码中看到的那样,但我不知道如何解决它。

有什么线索表明哪里出了问题以及如何修复?

答案1

如果可能的话,我会首先尝试从 Debian 存储库安装 Python 模块(例如 flask),然后再尝试使用 安装它们pip。例如,Flash 在 Debian 9 中可用:包python3-flask

  • apt install python3-flask

相关内容