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
Using a Virtual Environment (Recommended)
To avoid dependency conflicts, we strongly recommend using a virtual environment:
conda create -n maze python=3.10
conda activate maze
Install from Source
We only support installation from source now.
Clone the repository:
git clone https://github.com/QinbinLi/Maze.git
cd Maze
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.