Python workshop materials
- Get Python installed, my preference is to use Conda: https://anaconda.org/anaconda/python
- With Conda installed, use it to install Jupyter Notebooks:
conda install jupyter
(entered into your terminal/console)
We use Jupyter Notebooks to more conveniently experiment with and learn Python
- Clone or download this repository
- Navigate to the respository directory with your terminal/console
- Activate Jupyter Notebook:
jupyter notebook .
This will open a browser page reflecting the directory structure.
And we're ready to go!