uranusjr commented on code in PR #34714: URL: https://github.com/apache/airflow/pull/34714#discussion_r1347385103
########## INSTALL.md: ########## @@ -0,0 +1,233 @@ +# INSTALL / BUILD instructions for Apache Airflow + +This is a generic installation method that requires a number of dependencies to be installed. + +Depending on your system you might need different prerequisites, but the following +systems/prerequisites are known to work: + +Linux (Debian Bullseye and Linux Mint Debbie): + + sudo apt install build-essential python3-dev libsqlite3-dev openssl \ + sqlite default-libmysqlclient-dev libmysqlclient-dev postgresql + +On Ubuntu 20.04 you may get an error of ```mariadb_config not found``` +and mysql_config not found. + +Install MariaDB development headers: + + sudo apt-get install libmariadb-dev libmariadbclient-dev + +MacOS (Mojave/Catalina): + + brew install sqlite mysql postgresql + +- [Required] Fetch the tarball and untar the source move into the directory that was untarred. Review Comment: If you don’t want to run RAT, you can do `pip install apache-airflow==<version>` and avoid the tarball entirely. That makes the following instructions a bit complicated though. ########## INSTALL.md: ########## @@ -0,0 +1,233 @@ +# INSTALL / BUILD instructions for Apache Airflow + +This is a generic installation method that requires a number of dependencies to be installed. + +Depending on your system you might need different prerequisites, but the following +systems/prerequisites are known to work: + +Linux (Debian Bullseye and Linux Mint Debbie): + + sudo apt install build-essential python3-dev libsqlite3-dev openssl \ + sqlite default-libmysqlclient-dev libmysqlclient-dev postgresql + +On Ubuntu 20.04 you may get an error of ```mariadb_config not found``` +and mysql_config not found. + +Install MariaDB development headers: + + sudo apt-get install libmariadb-dev libmariadbclient-dev + +MacOS (Mojave/Catalina): + + brew install sqlite mysql postgresql + +- [Required] Fetch the tarball and untar the source move into the directory that was untarred. Review Comment: If you don’t want to run RAT, you can do `pip install apache-airflow==<version>` and avoid the tarball entirely. That makes the following instructions a bit complicated though. ########## INSTALL.md: ########## @@ -0,0 +1,233 @@ +# INSTALL / BUILD instructions for Apache Airflow + +This is a generic installation method that requires a number of dependencies to be installed. + +Depending on your system you might need different prerequisites, but the following +systems/prerequisites are known to work: + +Linux (Debian Bullseye and Linux Mint Debbie): + + sudo apt install build-essential python3-dev libsqlite3-dev openssl \ + sqlite default-libmysqlclient-dev libmysqlclient-dev postgresql + +On Ubuntu 20.04 you may get an error of ```mariadb_config not found``` +and mysql_config not found. + +Install MariaDB development headers: + + sudo apt-get install libmariadb-dev libmariadbclient-dev + +MacOS (Mojave/Catalina): + + brew install sqlite mysql postgresql + +- [Required] Fetch the tarball and untar the source move into the directory that was untarred. Review Comment: If you don’t want to run RAT, you can do `pip install apache-airflow==<version>` and avoid the tarball entirely. That makes all the next instructions a bit complicated though. -- 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]
