作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已按照以下链接安装 Airflow 的步骤
Airflow installation并得到以下错误
Traceback (most recent call last):
File "/usr/local/bin/airflow", line 25, in <module>
from airflow.configuration import conf
File "/usr/local/lib/python3.5/dist-packages/airflow/__init__.py", line 42, in <module>
from airflow.models import DAG
File "/usr/local/lib/python3.5/dist-packages/airflow/models/__init__.py", line 21, in
<module>
from airflow.models.baseoperator import BaseOperator, BaseOperatorLink # noqa: F401
File "/usr/local/lib/python3.5/dist-packages/airflow/models/baseoperator.py", line 30, in
<module>
from typing import Any, Callable, ClassVar, Dict, FrozenSet, Iterable, List, Optional,
Set, Type, Union
ImportError: cannot import name 'ClassVar'
最佳答案
在我的情况下,我也遇到了同样的错误:
As introduced in PEP 526, a variable annotation wrapped in ClassVar indicates that a given attribute is intended to be used as a class variable and should not be set on instances of that class.
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get update
sudo apt-get install python3.7
sudo apt install build-essential libssl-dev libffi-dev python3.7-dev
sudo apt-get install python3.7-venv
关于python - 导入错误 : cannot import name 'ClassVar' after installing airflow,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59664445/
假设我有以下代码: from typing import ClassVar class A: a: ClassVar[str] 如何在运行时检查 a 是否已声明为 ClassVar? 我尝试使
执行简单的 Groovy 程序时出现主题行错误 我是 groovy 和 java 编码的新手,我收到主题行错误,我不认为语法或代码有问题 package test.demo class classEx
我看到 issue在 Ruby 中使用类变量;然而,RuboCop 似乎是 documentation对于如何解决问题是不够的。 现在,我可以忽略它。鉴于我的项目,这并不重要。但是,我只想知道 Rub
我已按照以下链接安装 Airflow 的步骤 Airflow installation并得到以下错误 Traceback (most recent call last): File "/usr
我正在尝试使用工厂函数来生成一些类型注释 - 特别是针对 tuple 类型。我有一个可以正常工作的工厂版本(例如,它在 MyPy 中编译、运行和检查令人满意): import typing as tx
我是一名优秀的程序员,十分优秀!