Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. You need to have a CDS or ADS account. If you don't have an account, please self register at the CDS registration page or the ADS registration, whichever is appropriate.
  2. You need Python
    • Option 1: use Python 2.

      Expand
      titleTest Python 2 and install pip

      If you want to use Python 2, then it should come with your macOS. Open a Terminal and type command 'python'. You should see something like 'Python 2.7.10 (default, Feb 22 2019, 21:17:52)'. Type 'Control + D' to quit.

      For Python 2, run the 2 commands below to install pip:

      Code Block
      curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
      python get-pip.py



    • Option 2: use Python 3. You are recommended to follow instructions here using Homebrew.xcode-select --install

      Expand
      titleInstall Python3 through Homebrew


      Code Block
      xcode-select --install
      
      /usr/bin/rubybash -ec "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
      
      brew install python3



  3. Optional: you are recommended to set up a virtual environment.

...