Applied Mathematics 02525

Applied Mathematics 02525#

This guideline is for students attending course 02525 in the E2026 year.

The course requires:

  • A working Python (can be installed here)

  • A working VS Code (is installed by following these guides)

Choose one of these installation procedures:

Semi-manual installation

Download the 02525.yml and install it using this environment.yml guide.

This will create an environment named AppliedMath that you should activate when following the course.

Fully-manual installation

We recommend you to create an environment for this course:

conda config --add channels conda-forge
conda create --name AppliedMath python matplotlib numpy pip -y
conda activate AppliedMath
pip install pulp

Every time you need to run code in the course, you need to activate the environment:

conda activate AppliedMath