How to code with python on your Chromebook with Linux
What is Python? Python is a very reliable fully open source coding language with easy-to-use syntax. It's great for everyday programming use as well as high level programming. Step One: Install Linux on Your Chromebook with Crouton Follow the instructions found at http://chromebookhacks.blogspot.ca/2018/05/how-to-install-linux-on-chromebook_28.html Step Two: Install Python While in your Linux desktop environment, open your terminal and type: $ su do apt-get install python Enter your sudo password when prompted. Step Three: Install Mousepad Text Editor In your terminal type: $ su do apt-get install mousepad Enter your sudo password if prompted. Step Four: Create Your First Python File Open your file manager and navigate to the folder that you wish to create your file in. Right-click and select [Create Document]>[Empty File] . When you name it, make sure end the name with .py . Open this new file in Mousepad by right-clicking on it a...