Python 2 and Python 3 are already installed on Macintosh OS/X operating system so all you need to add is a programmer text editor.
Installing the Atom Text EditorPlease download and install Atom from this site:
We have a short step-by-step video showing how to use Atom and write your first Python 3 program.
The Terminal program on Macintosh is kind of buried under Macintosh HD -> Applications -> Utilities -> Terminal
There are several shortcuts that you might find helpful. You can go into the upper-right of your screen and click on the Spotlight search button and type terminal and you can execute Terminal from the pop-up list of items.
You can get Terminal to stay in your dock once terminal is launched by clicking and holding on the Terminal icon in the dock and then selecting "Keep in Dock". Then you can quickly launch Terminal by clicking on the icon in the dock.
When the command line starts up, you are in your "home" directory. In each of these examples, your logged in account should be used instead of csev.
Macintosh Home Directory: /Users/csevThe command line prompt usually includes some clue as to where you are at in the folder structure on your hard drive. If you want to really figure out where you are, on Macintosh use the pwd command.
udhcp-macvpn-624:~ csev$ pwd /Users/csev udhcp-macvpn-624:~ csev$
Generally the first thing you want to do when you open a command line interface is to navigate to the right folder. Say you wanted to run a file from your desktop. The command is cd Desktop
udhcp-macvpn-624:~ csev$ pwd /Users/csev udhcp-macvpn-624:~ csev$ cd Desktop udhcp-macvpn-624:Desktop csev$ pwd /Users/csev/Desktop udhcp-macvpn-624:Desktop csev$Nifty Trick: On the cd command, you can partially type a folder name like Desktop and then press the TAB key and the system will auto-complete the folder name if you have typed enough that the system can accurately guess what you mean to type.
Going Backwards (or Upwards)
You can change directory to the parent folder (the folder "above" the folder you are in using the cd .. command. It just says "go up one".
udhcp-macvpn-624:Desktop csev$ pwd /Users/csev/Desktop udhcp-macvpn-624:Desktop csev$ cd .. udhcp-macvpn-624:~ csev$ pwd /Users/csev udhcp-macvpn-624:~ csev$If you get Lost...
If you can't figure out what folder you are in and/or cannot figure out how to get to the folder you want to get to "home" simply close and re-open the Command Line / Terminal window.
What Files/Folders are Here?
You can list the contents of the current directory using the ls -l command.
udhcp-macvpn-624:Desktop csev$ pwd /Users/csev/Desktop udhcp-macvpn-624:Desktop csev$ ls -l total 8 -rw-r--r-- 1 csev staff 15 Sep 16 15:17 firstprog.py udhcp-macvpn-624:Desktop csev$Running Your Python Program in the Terminal
Start the Terminal program, navigate to the proper directory and type the following command:
python3 firstprog.pyThis loads the Python 3 interpreter and runs firstprog.py, showing the program output and/or errors in the Terminal window.
Some Cool Hints on The Macintosh Terminal Program
You can scroll back through previous commands by pressing the up and down arrows and re-execute commands using the enter key. This can save a lot of typing. If you like keeping your screen uncluttered, you can clear the scroll back buffer by pressing the Command key and the K key at the same time.
Este sitio esta en construcción. Si desea ayudar con las traducciones, consulte el repositorio de GitHub https://github.com/csev-es/py4e.
Copyright Creative Commons Attribution 3.0 - Charles R. Severance