3
respostas

error in Flask-OpenID setup command: use_2to3 is invalid.

Depois de eu inserir pip install apache-airflow==1.10.14 --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-1.10.14/constraints-3.7.txt" houve o seguinte erro depois de longas linhas de programação:

error: subprocess-exited-with-error

  × python setup.py egg_info did not run successfully.
  │ exit code: 1
  ╰─> [1 lines of output]
      error in Flask-OpenID setup command: use_2to3 is invalid.
      [end of output]

  note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed

× Encountered error while generating package metadata.
╰─> See above for output.

note: This is an issue with the package mentioned above, not pip.
hint: See above for details.

Eu só tenho 433,9MB de 9,9GB no meu simulador virtual Ubuntu no Virtual Box. Isso tem a ver? Estou usando o mesmo simulador do curso de Prompt de comando do Linux. Por que está dando erro no Flask_OpenID setup command? Sobre o que é o use_2to3, que está invlido?

3 respostas

Tô com o mesmo erro..

Eu fiz a instalação seguindo esse passo a passo: https://airflow.apache.org/docs/apache-airflow/stable/start/local.html Onde eexecutei o código:

# Airflow needs a home. `~/airflow` is the default, but you can put it
# somewhere else if you prefer (optional)
export AIRFLOW_HOME=~/airflow

# Install Airflow using the constraints file
AIRFLOW_VERSION=2.3.3
PYTHON_VERSION="$(python --version | cut -d " " -f 2 | cut -d "." -f 1-2)"
# For example: 3.7
CONSTRAINT_URL="https://raw.githubusercontent.com/apache/airflow/constraints-${AIRFLOW_VERSION}/constraints-${PYTHON_VERSION}.txt"
# For example: https://raw.githubusercontent.com/apache/airflow/constraints-2.3.3/constraints-3.7.txt
pip install "apache-airflow==${AIRFLOW_VERSION}" --constraint "${CONSTRAINT_URL}"

# The Standalone command will initialise the database, make a user,
# and start all components for you.
airflow standalone

# Visit localhost:8080 in the browser and use the admin account details
# shown on the terminal to login.
# Enable the example_bash_operator dag in the home page

Não achei as dags e a versão do Apache Airflow está diferente a do curso. Parei o curso por um momento para fazer outro. Enquanto isso não sei se a minha versão vai ficar com o conteúdo muito destoante ao nosso curso.

Eu fiz o mesmo, e deu certo!