Each operating system has it's own issues. I ran into one recently when installing Laravel on my Ubuntu System. Before I begin, this is what I did to get it initialized. I installed LAMP In terminal run php -v If it comes back as 5.6 you'll have to change the version to the latest version, i.e. 7.1 To do that, open your terminal and enter the following $ sudo a2dismod php5.6 $ sudo a2enmod php7.1 $ sudo service apache2 restart Verify that it's the new version: php -v Next, get composer. Go to https://getcomposer.org/download/ and follow the instructions. cd into your LAMP root directory Run the following command to create a Laravel project: sudo composer create-project laravel/laravel your-project-name --prefer-dist Wait until it's complete and navigate to your newly created directory/public folder in your browser http://localhost/ your-project-name /public At this point I received an error and it stated: The stream or file "/hom...
The True purpose of education is to make minds, not careers.