Skip to content
Merged
Changes from 2 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
13 changes: 13 additions & 0 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,19 @@ Check the "tutor" package on Pypi: https://pypi.org/project/tutor. You will need

.. _install_binary:


Virtual Environment (Recommended)
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's add this in Requirements section

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have moved this into the Requirements section

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

To prevent conflicts with other Python packages and maintain a clean environment, it's recommended that Tutor should be installed within a Python virtual environment. This is especially important on fresh or shared systems where installing packages globally may require elevated privileges and can interfere with system-level Python dependencies:

.. code-block:: bash

python3 -m venv env
source env/bin/activate

For more details on virtual environments, refer to the official `Python documentation <https://docs.python.org/3/library/venv.html>`_.

Binary release
~~~~~~~~~~~~~~

Expand Down