Skip to content
This repository was archived by the owner on Mar 13, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
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
9 changes: 9 additions & 0 deletions docs/user/tutorials/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,15 @@ installation will not interfere with any existing Python software::
$ python3 -m venv /path/to/venv
$ source /path/to/venv/bin/activate

.. note::

You may wish to deactivate any existing virual environments before sourcing the new
environment. Deactivation can be performed by executing:

- :code:`conda deactivate` for conda
- :code:`deactivate` for venv or virtualenv
- :code:`exit` for pipenv


Installing the library
----------------------
Expand Down
9 changes: 9 additions & 0 deletions docs/user/tutorials/new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,15 @@ pip to install packages in a virtual environment::
source .venv/bin/activate
pip install -e .[dev]

.. note::

You may wish to deactivate any existing virual environments before sourcing the new
environment. Deactivation can be performed by executing:

- :code:`conda deactivate` for conda
- :code:`deactivate` for venv or virtualenv
- :code:`exit` for pipenv

You can then run any entry points declared in setup.cfg e.g.::

python3-pip-skeleton --version
Expand Down