potiuk commented on code in PR #57027:
URL: https://github.com/apache/airflow/pull/57027#discussion_r2506991002


##########
airflow-core/docs/start.rst:
##########
@@ -43,6 +43,36 @@ This quick start guide will help you bootstrap an Airflow 
standalone instance on
    This guide will help you quickly set up Apache Airflow using ``uv``, a fast 
and modern tool for managing Python environments and dependencies. ``uv`` makes 
the installation process easy and provides a
    smooth setup experience.
 
+   If you are on Windows, you have to use WSL2 (Linux environment for Windows).
+      .. code-block bash
+
+         wsl --install
+         # Restart computer, then in WSL Ubuntu terminal
+         sudo apt update
+         sudo apt install python3-pip python3-venv
+
+         bash # Go to Linux home directory (not Windows mount)
+         cd ~
+
+         # Create airflow directory
+         mkdir -p ~airflow
+         cd ~airflow
+
+         # Create virtual environment

Review Comment:
   As discussed before -> the creation of the environment is the same in WSL2 
and outside - so we should rather update point 2. below`Install airflow using 
uv` to be `Install airflow in a virtual environment` - and rather add 
explanation that `uv` is a faster alternative to `pip` and creates the venv 
automatically for you - but both options - with `uv` and withoug (just with 
venv + pip) should be explained there.



-- 
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.

To unsubscribe, e-mail: [email protected]

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

Reply via email to