
.. _course-02525:


Applied Mathematics 02525
=================================================================

.. button-link:: https://www.google.com/search?q=cheatsheet+python+conda
   :color: { cheatsheet_color }
   :align: right
   :tooltip: Search Google for cheatsheet

   Find a Conda cheatsheet { cheatsheet_icon }

This guideline is for students attending course
:course-base:`2026:02525` in the E2026 year.

The course requires:

* A working Python (can be installed :ref:`here <install-python>`)
* A working VS Code (is installed by following :ref:`these guides <install-python>`)

Choose one of these installation procedures:

.. card:: Semi-manual installation

   Download the :download:`02525.yml </course/2026-2027/02525.yml>` and install
   it using :ref:`this environment.yml guide <learn-more-environments-yaml>`.

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


.. card:: Fully-manual installation

   We recommend you to create an :ref:`environment <learn-more-environments>` for this course:

   .. code-block:: bash

      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:

   .. code-block:: bash

      conda activate AppliedMath

