Installation

Prerequisites

We recommend using Python 3.10 or newer.

  • Python 3.10 or newer

You can verify your Python and pip versions with:

python --version

Install from Source

We only support installation from source now.

  1. Clone the repository:

git clone https://github.com/QinbinLi/Maze.git
cd Maze
  1. Install the package in development mode:

pip install -e .

The -e flag installs the package in “editable” (development) mode, so changes to the source code take effect immediately without reinstalling.

Verify Installation

After installation, confirm it worked by running:

python -c "import maze; print(maze.__version__)"

If no error occurs and the version number is printed, the installation was successful.