Skip to content

Commit

Permalink
Add installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
golmschenk committed Feb 1, 2024
1 parent 3d1ba42 commit 37a3d8c
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 3 deletions.
27 changes: 25 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,31 @@
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Welcome to qusi's documentation!
================================
qusi
====

Installation
------------

To install ``qusi``, with Python >= 3.11:

.. code:: shell
pip install qusi
However, although not required, we highly recommend creating a separate virtual environment for each distinct project (not just when using ``qusi``, but generally). For example, via Conda, creating a virtual environment for a project using ``qusi`` might look like:

.. code:: shell
conda create -n project_using_qusi_env python=3.11
Then before working, be sure to activate your environment.

.. code:: shell
conda activate project_using_qusi_env
Then install ``qusi`` within this environment.

.. toctree::
:maxdepth: 2
Expand Down
2 changes: 1 addition & 1 deletion src/qusi/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.8.2"
__version__ = "0.8.3"

0 comments on commit 37a3d8c

Please sign in to comment.