This manual provides a step-by-step guide to set up a working environment on Windows for running the BlueMath notebooks.
Git is required to clone the BlueMath repository from GitHub.
Download the installer for your system (64-bit is recommended): https://github.com/git-for-windows/git/releases/download/v2.50.0.windows.1/Git-2.50.0-64-bit.exe
Run the installer and accept the default recommended options.
After installation, open Git Bash from the Start Menu and check the installation:
git --version
Miniconda allows you to create isolated Python environments to manage dependencies.
Download Miniconda from: https://docs.conda.io/en/latest/miniconda.html
Choose the Windows installer (Python 3.x, 64-bit) and run it.
During installation, check the box that says “Add Miniconda to my PATH environment variable”
Open the Anaconda Prompt or Command Prompt and verify the installation:
conda --version
bluemath
EnvironmentOpen the Anaconda Prompt from the Start Menu.
Create a new environment named bluemath
with the required packages:
conda create -n bluemath python ipykernel
Activate bluemath
environment and install bluemath_tk pip package:
conda activate bluemath
pip install bluemath_tk