This guide will help you set up your environment and download the necessary models for the RL Trading Agent project.
git clone https://github.com/yourusername/RLTradingAgent.git
cd RLTradingAgentIt is recommended to use a virtual environment to manage dependencies.
python3 -m venv venv
source venv/bin/activatepython -m venv venv
venv\Scripts\activateOnce the virtual environment is activated, install the required dependencies:
pip install -r requirements.txtPretrained models are hosted on GitHub Releases. Download them using the following steps:
-
Go to the Releases page.
-
Download the latest model files (
*.zip). -
Extract the files into the
models/directory:unzip path/to/downloaded/model.zip -d models/
To check if everything is set up correctly, try running:
python src/ui/app.pyIf the Streamlit app starts without errors, the setup is complete!
For further issues, open an issue in the repository.