How to run a python script in the Mac Terminal

Tyler Tyler (285)
Total time: 1 minute 
Updated: May 7th, 2019

This guide will show you how to run a Python script in the Mac Terminal (command line) in either Mac OS X or MacOS.

Here’s everything you’ll need to complete this guide:

OSX×1

Simply navigate to the script directory and type:

python script_name.py

This will use the python interpreter to run your script.

You might need to specify the full path to the python interpreter.

which python

should produce:

/usr/bin/python

So you might try running:

/usr/bin/python script_name.py
We’re hiring!
Are you a passionate writer? We want to hear from you!

Want to support Howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.

Leave a Reply

Your email address will not be published. Required fields are marked *