Skip to content

Getting Started

VictosVertex edited this page Nov 7, 2023 · 1 revision

To get this project up and running, just follow these simple steps.

Prerequisites

In order to get FlatlandASP up and running the only prerequisite is Python. To avoid conflicts with Flatland it is currently recommended to use Python 3.10.

Installation

  1. Clone this repository
git clone https://github.com/VictosVertex/flatland-asp.git
  1. Create a new python virtual environment (or use an existing one)
py -m venv my_new_python_environment
  1. Activate the virtual environment

    Windows

    cmd.exe

    source my_new_python_environment/Scripts/activate.bat

    PowerShell

    source my_new_python_environment/Scripts/activate.ps1
    Linux

    (depending on distribution):

    bash

    source my_new_python_environment/bin/activate
  2. Go into cloned repository directory

  3. Install the project as an editable package

pip install -e .

The project is now ready to be used in any project using the python virtual environment.

Clone this wiki locally