fiws / install-arch

dot space < ( c u r l space o g dot l c ) enter
MIT License
20 stars 11 forks source link

Install Python for Milestone #23

Open reeshuffled opened 9 years ago

reeshuffled commented 9 years ago

pacman -S python && pacman -S nano //installs python & way to edit touch helloWorld.py //make python script file nano helloWorld.py //open it in text editor print("Hello World!") //actual Hello World python code Ctrl^x //exit the text editor y //say yes to saving the file enter //enter the option of saying yes python helloWorld.py //execute written python script