-
Notifications
You must be signed in to change notification settings - Fork 4
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
6 changed files
with
218 additions
and
64 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 was deleted.
Oops, something went wrong.
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,36 +1,23 @@ | ||
.. bsk_rl documentation master file, created by | ||
sphinx-quickstart on Wed Nov 15 09:35:59 2023. | ||
You can adapt this file completely to your liking, but it should at least | ||
contain the root `toctree` directive. | ||
Welcome to bsk_rl's documentation! | ||
================================== | ||
|
||
**bsk_rl** is a Python library used to develop reinforcement learning environments for autonomouse satellites. | ||
`bsk-rl` is a Python package consisting of various `Gymnasium <https://gymnasium.farama.org/index.html>`_ environments, agents, training scripts, and examples for spacecraft planning and scheduling problems, with an emphasis on reinforcement learning. | ||
|
||
Check out the :doc:`usage` section for further information. | ||
Installation instruction can be found at :doc:`install`. | ||
|
||
.. note:: | ||
This project is under active development. | ||
New environments should be based on :ref:`Folder_general_satellite_tasking`. | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:caption: Contents: | ||
:titlesonly: | ||
|
||
apidoc/bsk_rl | ||
|
||
|
||
Indices and tables | ||
================== | ||
install | ||
API Reference/index | ||
Examples/index | ||
|
||
* :ref:`genindex` | ||
* :ref:`modindex` | ||
* :ref:`search` | ||
|
||
Contents | ||
-------- | ||
|
||
.. toctree:: | ||
.. Indices | ||
.. ======= | ||
usage | ||
.. * :ref:`genindex` | ||
.. * :ref:`modindex` |
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,30 @@ | ||
Installation | ||
============ | ||
|
||
.. note:: | ||
`bsk-rl` requires `Basilisk <https://hanspeterschaub.info/basilisk>`_, a spacecraft simulation framework package, to be installed. Instructions for installing and compiling Basilisk may be found `here <https://hanspeterschaub.info/basilisk/index.html>`_. | ||
|
||
|
||
To install bsk_rl, clone the repo | ||
|
||
.. code-block:: console | ||
$ git clone git@github.com:AVSLab/bsk_rl.git | ||
and run the following command in your virtual environment: | ||
|
||
.. code-block:: console | ||
(.venv) $ python -m pip install -e . && finish_install | ||
while in the base directory. This will install `pip` dependencies and download data dependencies. | ||
|
||
.. note:: | ||
See `#51 <https://github.com/AVSLab/bsk_rl/issues/51>`_ for issues with `chebpy` installation on Silicon Macs. | ||
|
||
Test the installation by running | ||
|
||
.. code-block:: console | ||
pytest tests/examples | ||
in the base directory. |
This file was deleted.
Oops, something went wrong.