Follow the link: https://conda.io/projects/conda/en/latest/user-guide/install/macos.html (Don't forget to check if ~/.bashrc has the PATH).
To set up a conda environment:
conda create –name <name of environment> python=3.6
source activate <name of environment>
conda install -c <packages>
- Numpy: all the math, and arrays
- Matplotlib: plots and histogramming
- Pandas: dataframes (similar to a spreadsheet)
- IPython: to work with Jupyter Lab
git clone <link of repo>: download the repositorygit commit -m ”reason for commitment”: commits changes to the git repositorygit push: pushes committed changes to the git repository.git pull: updates you local branch from the master.
In the terminal type jupyter notebook, and the Jupyter workspace will open. Here you can create, and edit notebooks (.ipynb) or python (.py) files.
Go through this github, really useful! https://github.com/milaan9/01_Python_Introduction
Talk about the options...