| Installation |
| ~~~~~~~~~~~~ |
|
|
| - Install dependencies using ``apt`` (on Linux only): |
|
|
| .. code:: bash |
|
|
| |
| sudo apt install cmake build-essential |
|
|
| - Run the install command that iterates over all the extensions in ``source`` directory and installs them |
| using pip (with ``--editable`` flag): |
|
|
| .. tab-set:: |
| :sync-group: os |
|
|
| .. tab-item:: :icon:`fa-brands fa-linux` Linux |
| :sync: linux |
|
|
| .. code:: bash |
|
|
| ./uwlab.sh --install |
|
|
| .. tab-item:: :icon:`fa-brands fa-windows` Windows |
| :sync: windows |
|
|
| .. code:: batch |
|
|
| uwlab.bat --install :: or "uwlab.bat -i" |
|
|
|
|
| By default, the above will install **all** the learning frameworks. These include |
| ``rl_games``, ``rsl_rl``, ``sb3``, ``skrl``, ``robomimic``. |
|
|
| If you want to install only a specific framework, you can pass the name of the framework |
| as an argument. For example, to install only the ``rl_games`` framework, you can run: |
|
|
| .. tab-set:: |
| :sync-group: os |
|
|
| .. tab-item:: :icon:`fa-brands fa-linux` Linux |
| :sync: linux |
|
|
| .. code:: bash |
|
|
| ./uwlab.sh --install rl_games |
|
|
| .. tab-item:: :icon:`fa-brands fa-windows` Windows |
| :sync: windows |
|
|
| .. code:: batch |
|
|
| uwlab.bat --install rl_games :: or "uwlab.bat -i rl_games" |
|
|
| The valid options are ``all``, ``rl_games``, ``rsl_rl``, ``sb3``, ``skrl``, ``robomimic``, |
| and ``none``. If ``none`` is passed, then no learning frameworks will be installed. |
|
|