Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 783 Bytes

macos-local-envprep.md

File metadata and controls

40 lines (27 loc) · 783 Bytes

MacOS | Environment preparation

Step 1: Download and install the Anaconda distribution of Python

brew install anaconda --cask

Step 2: Set Environment Variables for conda

Note: if you have up to date terminal client 'zsh', make changes in ~/.zshrc file, otherwise it gonna be named as ~/.bashrc.

nano ~/.zshrc

And add following:

Note: --cask flag installs modules into /usr/local directory. If you installed anaconda into another directory, just change root path down below.

export PATH="/usr/local/anaconda3/bin:$PATH"

To execute changes:

source ~/.zshrc

Step 3: Install Docker (docker-compose already included)

brew install docker --cask

Step 4: Run Docker

docker run hello-world