Skip to content
This repository was archived by the owner on Nov 17, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions doc/dev_start_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,22 @@ with the following:
You can choose a name other than "upstream" to reference the official Aesara
repository.

We also have to pull the necessary tags like so:

.. code-block:: bash

git fetch -t --all

.. note::

If an error along the lines of `errno=Operation timed out` occurs here, then you
may need to run

.. code-block:: bash

git remote set-url upstream https://github.com/aesara-devs/aesara.git
git fetch -t --all

Setting up the your local development environment
-------------------------------------------------

Expand All @@ -155,6 +171,10 @@ You will need to create a virtual environment and install the project requiremen
The recommended approach is to install `conda <https://conda.io/projects/conda/en/latest/user-guide/install/index.html>`_ and
create a virtual environment in the project directory:

.. note::

For computers using an ARM processor, replace the `environment.yml` below with `environment-arm.yml`.

.. code-block:: bash

conda env create -n aesara-dev -f environment.yml
Expand Down