diff --git a/README.md b/README.md index f97d1cf8..b4e35ac7 100644 --- a/README.md +++ b/README.md @@ -73,8 +73,8 @@ pip install "imednet[sqlalchemy]" # For SQL export pip install "imednet[pyarrow]" # For Parquet export pip install "imednet[excel]" # For Excel export -# For Airflow integration (apache-airflow must be installed manually due to version conflicts) -pip install "imednet[airflow]" apache-airflow apache-airflow-providers-amazon +# For Airflow integration (must be installed manually due to version conflicts) +pip install imednet apache-airflow apache-airflow-providers-amazon ``` ### Development Version diff --git a/docs/airflow.rst b/docs/airflow.rst index a1a710ae..b1dd0d79 100644 --- a/docs/airflow.rst +++ b/docs/airflow.rst @@ -6,11 +6,11 @@ The SDK ships with operators and sensors for building Airflow pipelines. Installation ------------ -Install the SDK with the Airflow extra: +Install the SDK along with Airflow dependencies manually (due to version conflicts, the Airflow packages cannot be managed automatically): .. code-block:: bash - pip install "imednet[airflow]" + pip install imednet apache-airflow apache-airflow-providers-amazon Example DAG -----------