尝试在 vagrant VM 中安装 SQLAlchemy 时出现错误

Errors given when trying to install SQLAlchemy in a vagrant VM

输入后在流浪者框中,vagrant ssh 我尝试 运行 以下两行,

import sys
from sqlalchemy import Column, ForeignKey, Integer, String, engine

出现以下错误。

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named 'sqlalchemy'

当我尝试使用以下代码 pip install SQLAlchemy 安装 sqlalchemy 时,它安装了应用程序,但结果没有改变。 当我尝试 pip3 install SQLAlchemy 时出现以下错误。

Traceback (most recent call last):
  File "/usr/local/bin/pip3", line 7, in <module>
    from pip._internal.cli.main import main
  File "/usr/local/lib/python3.5/dist-packages/pip/_internal/cli/main.py", line
57
    sys.stderr.write(f"ERROR: {exc}")
                                   ^
SyntaxError: invalid syntax

SQLAlchemy 1.4 需要 Python2.7 或 Python3.6+。您的服务器是 运行 Python3.5。尝试 pip install --upgrade 'sqlalchemy<1.4'

我按照评论部分的建议进行了尝试,现在效果很好。