Skip to content
This repository has been archived by the owner on Jun 28, 2022. It is now read-only.

LizardByte/RetroArcher.X

Repository files navigation

Contributing

These are instructions for setting up RetroArcher.X with a development virtual environment (separated from your main python install). The code below will setup the venv and run retroarcher.

  • Install Python 3.9
  • Download and extract the source code to the directory of your choice.
  • Open terminal/command prompt
  • Windows:
    cd <RetroArcher.X directory>
    python -m venv venv
    call venv\Scripts\activate.bat
    pip install --upgrade -r requirements.txt
    python retroarcher.py
    deactivate
  • Linux/Mac:
    cd <RetroArcher.X directory>
    python -m venv venv
    source venv/bin/activate
    pip install --upgrade -r requirements.txt
    python retroarcher.py
    deactivate