By Brad Miller and David Ranum, Luther College.
Textbook provided for free by Runestone Academy. Consider supporting them.
If you don't yet have an environment to run jupyter notebooks, you may choose to install miniconda
. You can follow the instructions from Vancouver DataJam which will include installing the libraries needed for some of my solutions to the exercises (e.g. pandas
, matplotlib
).
After conda
is installed, terminals will have the conda base environment activated by default. To disable this behaviour, run conda config --set auto_activate_base false
.
- Activate the conda base environment, if not yet activated:
conda activate
- Run
jupyter notebook
- Navigate to the location of the notebook you want to open!
- Searching the internet for
jupyter notebook basics
will give you lots of resources to get started on Jupyter notebooks.
- Searching the internet for
- When you're done, press
Control-C
to stop the notebook server - Deactivate conda:
conda deactivate
You don't need to use virtual environments to run the solutions as long as you have python paths set up, and the necessary packages installed (e.g. pytest
if you are interested in running the tests)
I'm using a virtual environment because I prefer not to use a global installation of pytest, which is what I use to run my tests.
-
Create a virtual environment: `virtualenv --prompt "(pythonds3) " .venv
-
Activate environment:
source .venv/bin/activate
-
pip-install all the things
pip install [package]
ORpip install -r requirements.txt
-
(noting for my own sake) After installing new packages, export current environment configuration file:
pip freeze > requirements.txt
-
Deactivate environment:
deactivate
I use pytest to run my tests.