使用 Pipenv 安装 Airflow 1.10.10
Airflow 1.10.10 installation with Pipenv
有人在使用 pipenv 安装 apache-airflow 1.10.10 时遇到问题吗?当我尝试使用 pipenv install 安装它时出现以下错误:
There are incompatible versions in the resolved dependencies:
marshmallow<3.0.0,>=2.18.0 (from flask-appbuilder==2.3.4->apache-airflow==1.10.10->-r /var/folders/rl/p0x650cn1lx6f7syttzvh2hh0000gn/T/pipenvykrgd_0krequirements/pipenv-lwhwxrq7-constraints.txt (line 2))
marshmallow>=2.0.0 (from marshmallow-enum==1.5.1->flask-appbuilder==2.3.4->apache-airflow==1.10.10->-r /var/folders/rl/p0x650cn1lx6f7syttzvh2hh0000gn/T/pipenvykrgd_0krequirements/pipenv-lwhwxrq7-constraints.txt (line 2))
marshmallow>=3.0.0 (from marshmallow-sqlalchemy==0.24.0->flask-appbuilder==2.3.4->apache-airflow==1.10.10->-r /var/folders/rl/p0x650cn1lx6f7syttzvh2hh0000gn/T/pipenvykrgd_0krequirements/pipenv-lwhwxrq7-constraints.txt (line 2))
据我了解,Airflow 的子依赖项需要版本冲突的 marshmallow 包:marshmallow<3.0.0 和 marshmallow>=3.0.0。我不明白的是它曾经有效。 Airflow 依赖项与自身冲突是否正常?在没有 Pipenv 的 virtualenv 上执行 pip install apache-airflow==1.10.10 时,我没有遇到问题。
有什么见解吗?谢谢
我在通过 pipenv 安装 apache-airflow 1.10.11 时遇到了同样的问题。冲突的依赖项似乎与 flask-appbuilder 的子依赖项有关。固定 marshmallow-sqlalchemy = "==0.16.1"
解决了我的问题。
Pip文件:
...
[packages]
marshmallow-sqlalchemy = "==0.16.1"
apache-airflow = "==1.10.11"
...
我也用 apache-airflow 1.10.10 和 1.10.12 成功测试了它。
有人在使用 pipenv 安装 apache-airflow 1.10.10 时遇到问题吗?当我尝试使用 pipenv install 安装它时出现以下错误:
There are incompatible versions in the resolved dependencies:
marshmallow<3.0.0,>=2.18.0 (from flask-appbuilder==2.3.4->apache-airflow==1.10.10->-r /var/folders/rl/p0x650cn1lx6f7syttzvh2hh0000gn/T/pipenvykrgd_0krequirements/pipenv-lwhwxrq7-constraints.txt (line 2))
marshmallow>=2.0.0 (from marshmallow-enum==1.5.1->flask-appbuilder==2.3.4->apache-airflow==1.10.10->-r /var/folders/rl/p0x650cn1lx6f7syttzvh2hh0000gn/T/pipenvykrgd_0krequirements/pipenv-lwhwxrq7-constraints.txt (line 2))
marshmallow>=3.0.0 (from marshmallow-sqlalchemy==0.24.0->flask-appbuilder==2.3.4->apache-airflow==1.10.10->-r /var/folders/rl/p0x650cn1lx6f7syttzvh2hh0000gn/T/pipenvykrgd_0krequirements/pipenv-lwhwxrq7-constraints.txt (line 2))
据我了解,Airflow 的子依赖项需要版本冲突的 marshmallow 包:marshmallow<3.0.0 和 marshmallow>=3.0.0。我不明白的是它曾经有效。 Airflow 依赖项与自身冲突是否正常?在没有 Pipenv 的 virtualenv 上执行 pip install apache-airflow==1.10.10 时,我没有遇到问题。
有什么见解吗?谢谢
我在通过 pipenv 安装 apache-airflow 1.10.11 时遇到了同样的问题。冲突的依赖项似乎与 flask-appbuilder 的子依赖项有关。固定 marshmallow-sqlalchemy = "==0.16.1"
解决了我的问题。
Pip文件:
...
[packages]
marshmallow-sqlalchemy = "==0.16.1"
apache-airflow = "==1.10.11"
...
我也用 apache-airflow 1.10.10 和 1.10.12 成功测试了它。