potiuk commented on a change in pull request #13439:
URL: https://github.com/apache/airflow/pull/13439#discussion_r551390697



##########
File path: LOCAL_VIRTUALENV.rst
##########
@@ -135,17 +134,40 @@ To create and initialize the local virtualenv:
 
    .. code-block:: bash
 
-    pip install -U -e ".[devel,<OTHER EXTRAS>]" # for example: pip install -U 
-e ".[devel,google,postgres]"
+    pip install --upgrade -e ".[devel,<OTHER EXTRAS>]" # for example: pip 
install --upgrade -e ".[devel,google,postgres]"
 
 In case you have problems with installing airflow because of some requirements 
are not installable, you can
 try to install it with the set of working constraints (note that there are 
different constraint files
 for different python versions:
 
    .. code-block:: bash
 
-    pip install -U -e ".[devel,<OTHER EXTRAS>]" \
+    pip install -e ".[devel,<OTHER EXTRAS>]" \
+        --constraint 
"https://raw.githubusercontent.com/apache/airflow/constraints-master/constraints-3.6.txt";
+
+
+This will install Airflow in 'editable' mode - where sources of Airflow are 
taken directly from the source
+code rather than moved to the installation directory. During the installation 
airflow will install - but then
+automatically remove all provider packages installed from pypi - instead it 
will automatically use the
+provider packages available in your local sources.

Review comment:
       Will do.




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to