-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move specific version installation to docs
- Loading branch information
Showing
3 changed files
with
52 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
|
||
.. _getting_started_users: | ||
|
||
************************* | ||
Getting Started For Users | ||
************************* | ||
|
||
.. warning:: | ||
|
||
The following guide is for *users*. As of now this will just cover | ||
the basic installation procedure. This guide will be extended in | ||
the future. | ||
|
||
|
||
------------------------ | ||
Get the ctapipe software | ||
------------------------ | ||
|
||
+++++++++++++++++++++++++++++ | ||
How to get the latest version | ||
+++++++++++++++++++++++++++++ | ||
|
||
We recommend using the ``mamba`` package manager, which is a C++ reimplementation of ``conda``. | ||
It can be found `here <https://github.com/mamba-org/mamba>`_. | ||
Once you created a new virtual environment, you can install ``ctapipe`` with the following command:: | ||
|
||
mamba install -c conda-forge ctapipe | ||
|
||
or with pip:: | ||
|
||
pip install ctapipe | ||
|
||
|
||
+++++++++++++++++++++++++++++ | ||
How to get a specific version | ||
+++++++++++++++++++++++++++++ | ||
|
||
To install a specific version of ``ctapipe`` you can use the following command:: | ||
mamba install -c conda-forge ctapipe==0.17.0 | ||
|
||
or with pip:: | ||
|
||
pip install ctapipe==0.17.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters