composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition <install_dir>
cd <install_dir>
chown -R :www-data .
find . -type d -exec chmod 770 {} \; && find . -type f -exec chmod 660 {} \; && chmod u+x bin/magento
Note: make sure your database user has the following permissions SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, REFERENCES, INDEX, ALTER, CREATE TEMPORARY TABLES, LOCK TABLES, EXECUTE, CREATE VIEW, SHOW VIEW, CREATE ROUTINE, ALTER ROUTINE, EVENT, TRIGGER
./bin/magento setup:install \
--base-url=http://example.com/ \
--backend-frontname=manage \
--use-rewrites=1 \
--use-secure=0 \
--db-host=localhost \
--db-name=magento_exercises \
--db-user=magento_user \
--db-password=secret \
--admin-firstname=August \
--admin-lastname=Ash \
[email protected] \
--admin-user=admin \
--admin-password=admin123 \
--language=en_US \
--currency=USD \
--timezone=America/Chicago
./bin/magento deploy:mode:set developer
./bin/magento sampledata:deploy
composer update
./bin/magento setup:upgrade