Python#

binder: Read/edit/run the notebooks#

Run the code in binder: Binder. When you first click on this link, it may take a few minutes to set up the environment with all required packages. Then you can edit and run the notebooks, but you cannot save them; but you can download the notebooks to your computer.

colab: Read/edit/run the notebooks#

You can see a listing of all the notebooks on colab Colab

or import the individual notebooks into colab using the following links

After importing into colab, you can edit and run the notebooks but the changes you make will not be saved. To save your changes, you must first make a copy of the notebook into your google drive by File --> Save a copy in drive.

Installing python#

To install Python on windows, see Python on Windows. After you install Python, open PowerShell and install other modules using pip

pip install numpy scipy sympy matplotlib jupyterlab

A better option on windows is to first install wsl and then install python inside wsl.

On mac, I recommend using homebrew and then

brew install miniforge
conda update conda
conda update --all
conda install numpy scipy sympy matplotlib jupyterlab

On Linux also, you can first install miniforge and then the other modules as above.

Other resources#

Table of contents#