Python Installation Guide

for MacOS | for Windows

Python for Mac OS

Check your Python version (Mac users)

Python should come already installed on MacOS. But we need to make sure you have a version compatible with Twarc.

  1. Open Terminal, type in the following command, and then press enter.

     python --version
    

    If you already have Python installed, the above command will print the version number:

    Screen shot of python version command

    To check if you have Python 3, enter the command:

     python3 --version
    

    If you have Python 3 installed, this will print the version number:

    Screen shot of python 3 version command

  2. Make sure you have at least 2.7, Python 3 is ideal.

  3. Otherwise, install the most current version of Python 3 (or update if you currently have Python 2). Visit https://www.python.org/downloads/ for the latest version. It is fine to download Python 3 if you currently have Python 2 on your system, both versions can coexist without conflict.

Python for Windows

Install Python

Python does not come standard on Windows, so you will need to download the software if you have not previously done so. If you have Anaconda on your computer, you may need to follow another process for installing twarc.

  1. Visit https://www.python.org/downloads/ to download the latest version of Python.

  2. When the installer opens, make sure to check the box for ‘Add Python to Path’, then click ‘Install Now’:

    Screen shot of python install setup

  3. When the setup completes, you will be prompted with an option to ‘Disable path length limit’. Click to select this option:

    Screen shot of python setup

  4. After this configuration is set, Python should be successfully installed on your computer. You can check to make sure Python was installed correctly by entering the command python --version in your Command Prompt:

    Screen shot of python setup