This project is part of a series of 3 projects, available at:
[1] https://github.com/MariusVladDumitru/MicroRTS - fork of MicroRTS.
[2] https://github.com/MariusVladDumitru/MicroRTS-Python - python api for the above fork of MicroRTS.
[3] https://github.com/MariusVladDumitru/BIOSINF-Dissertation - dissertation thesis code.
These projects are the source code for my dissertation thesis.
Thank you to the original authors of MicroRTS, available at https://github.com/Farama-Foundation/MicroRTS.
Thank you to the original authors of MicroRTS-py, available at https://github.com/Farama-Foundation/MicroRTS-py.
Thank you to the original authors of python-microRTS, available at https://github.com/Bam4d/python-microRTS, documentation available at https://douglasrizzo.com.br/python-microRTS/index.html.
- IDE or text editor of choice.
- Miniconda or Anaconda.
- Python.
- Install a text editor or IDE of your choice. Recommandations: Pycharm(free or pro), Spyder, Visual Studio Code, Sublime Text, Notepad++, Kate.
- Install Miniconda or Anaconda available here. Documentation: Conda documentation, Getting Started Guide.
- Create new conda environment:
conda create -n BIOSINF-Dissertation
- Activate the new environment:
conda activate BIOSINF-Dissertation
- Clone this repository:
git clone https://github.com/MariusVladDumitru/BIOSINF-Dissertation.git
- cd into repository folder:
cd BIOSINF-Dissertation
- Install packages from requirements.txt:
conda install --yes --file requirements.txt
CHECK IF THIS WORKS