KesharwaniArpita commented on code in PR #34714: URL: https://github.com/apache/airflow/pull/34714#discussion_r1347443124
########## 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 Review Comment: Would it be wise removing this part? The instructions seems to be more focused on setting up development environments rather than production setups. What are your thoughts about that? -- 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]
