-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
42 additions
and
8 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 |
---|---|---|
@@ -1,6 +1,39 @@ | ||
Installation | ||
============ | ||
|
||
.. warning:: | ||
There are two ways you can install ARLBench: PyPI and GitHub. The first one is the simplest way to install ARLBench, while the second one is the best way to install the latest version of ARLBench. | ||
Either way, you will likely want to first create a virtual environment to install ARLBench into. This can be done by running the following command: | ||
|
||
This page is under construction. | ||
.. code-block:: bash | ||
conda create -n arlbench python=3.10 | ||
conda activate arlbench | ||
1. Using PyPI | ||
|
||
This is the simplest way to install ARLBench. Just run the following command: | ||
|
||
.. code-block:: bash | ||
pip install arlbench | ||
2. Downloading from GitHub | ||
|
||
This is the best way to install the latest version of ARLBench. First, clone the repository: | ||
|
||
.. code-block:: bash | ||
git clone git@github.com:automl/arlbench.git | ||
cd arlbench | ||
Then, install the package: | ||
|
||
.. code-block:: bash | ||
make install | ||
If you are on a Linux system and would like to use envpool environments, you can instead use: | ||
|
||
.. code-block:: bash | ||
make install-envpool |