Skip to content

fauxrogue/ravage2-docs

Repository files navigation

Setup Environment


  1. Create a virtual environment with the command below.

    python -m venv .venv
    
  2. Activate the virtual environment:

    Unix

    source ./.venv/bin/activate
    

    Windows (Bash)

    source ./.venv/Scripts/activate
    

    Windows (Cmd/PowerShell)

    .venv\Scripts\activate.bat
    
  3. Update pip:

    python -m pip install --upgrade pip
    
  4. Deactivate the virtual environment:

    deactivate