gpt4 book ai didi

python - 如何使用环境变量更改安装的主文件夹?

转载 作者:行者123 更新时间:2023-12-02 19:43:20 24 4
gpt4 key购买 nike

我正在尝试安装一个名为 Apache Airflow 的程序。

说明显示如何指定主文件夹

# airflow needs a home, ~/airflow is the default,
# but you can lay foundation somewhere else if you prefer
# (optional)
export AIRFLOW_HOME=~/airflow

# install from pypi using pip
pip install apache-airflow

# initialize the database
airflow initdb

https://airflow.apache.org/docs/stable/start.html

我在 Google Colab 工作,我希望该文件夹位于主目录中,即 /content 。但是,无论我为 export AIRFLOW_HOME= 指定什么,主文件夹始终设置在 /root 中。

到目前为止我已经尝试过

export AIRFLOW_HOME=~content

export AIRFLOW_HOME=~content/

export AIRFLOW_HOME=~/content

export AIRFLOW_HOME=~/content/airflow

export AIRFLOW_HOME=~/content/airflow/

export AIRFLOW_HOME='pwd'

export AIRFLOW_HOME='pwd' /content/

export AIRFLOW_HOME='pwd' /content

export AIRFLOW_HOME='pwd' content/

export AIRFLOW_HOME='pwd' content

为了方便起见,这里有一个代码 colab 笔记本,方便修补

https://colab.research.google.com/drive/1lV-D60qEJN2F4azUYTDVeUCKv6qTyzL3

最佳答案

您可以在当前工作目录中设置如下环境。

export AIRFLOW_HOME="$(pwd)"

例如,如果您的pwd是根目录中的/opt,那么您可以cd/opt并运行多于。当您运行 airflow initdb 时,airflow.cfg 文件和其他文件将位于此目录中,但如果您希望将这些文件放在单独的 airflow 中文件夹,然后在运行上面的导出语句之前,您可以创建 Airflow 目录(mkdir airflow)并cd到该文件夹​​,然后运行上面的导出命令。

关于python - 如何使用环境变量更改安装的主文件夹?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59777432/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com