Introducing a dynamic package designed specifically for the development and implementation of reinforcement learning (RL) projects. This toolkit includes essential classes for modeling Markov Decision Processes (MDPs), agents, and environments, laying the foundation for RL systems. With our package, users have the flexibility to create custom environments, allowing for the exploration and testing of various RL algorithms. Whether you're a researcher, educator, or developer, this package provides the necessary tools to implement reinforcement learning applications.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
Python: This project requires a Python version >=3.9 and <3.13. You can download it from python.org.
This project can be installed using pip directly from PyPI or by cloning the repository from GitHub. Follow the instructions below based on your preferred method.
First, consider creating a virtual environment:
python -m venv venv
source venv/bin/activate # On Unix/macOS
.\venv\Scripts\activate # On Windows
To install the package from PyPI, run the following command in your terminal. This is the simplest way to install the latest stable version of the project:
pip install relearn
Make sure you have pip installed and updated to the latest version to avoid any issues.
If you prefer to install the latest development version or want to contribute to the project, you can clone the repository from GitHub and install it manually:
-
Clone the repository:
git clone https://github.com/umilISLab/relearn.git
-
Navigate to the project directory:
cd relearn
-
Consider creating a virtual environment:
python -m venv venv source venv/bin/activate # On Unix/macOS .\venv\Scripts\activate # On Windows
-
Install the project and its dependencies using the preferred method:
-
Dependency Management with Poetry: This project uses Poetry for dependency management and package handling. Ensure you have Poetry installed on your system. For installation instructions, visit the official Poetry documentation.
To check if you have Poetry installed, run the following command in your terminal:
poetry --version
If Poetry is installed, you should see the version number in the output. If not, please follow the installation guide provided in the link above. - Installing Dependencies: With Poetry installed, you can install project dependencies by running:
shell poetry install
-
If the project uses a
requirements.txt
:pip install -r requirements.txt
-
After installation, you can verify that the project is installed correctly by running:
python -c "import relearn; print(relearn.__version__)"
You can find a Recycling Robot example here.
- poetry - Dependency Management
We use SemVer for versioning.
- Elisabetta Rocchetti - Initial work - ISLab
This project is licensed under the GNUv3 - see the LICENSE.md file for details