Name suggests ... (to be updated)
Use the package manager pip to install foobar.
pip install virtualenv
python 3.7 (tested)
make a virtualenv
python -m virtualenv venv
Activate the virtual environment
In Windows: `venv\Script\activate`
In UNIX : `source venv/bin/activate`
Install requirements
pip install -r requirements.txt
Play the game
python game.py
- Details of the modules that are already created : Browser module for the game, gym module for q learnign(mountain car example)
- Work done up until now - firebase deployment configs and browser deployment configs have been setup, qlearning module from gym
- Modules To Be Created - pon env for custom observations
- Work To Be Done - integrate the pygame module inside a custome environment for controlled observations
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.