Preparation for installation
Ensure that Python version 3.7+ and the Git tool are installed; a virtual environment (such as venv or conda) is recommended to isolate dependencies.
Detailed installation steps
- Clone the source code repository::
execute a commandgit clone https://github.com/Quarm-AI/Quarm.gitGet the latest code - Installation of dependencies::
Go to the project directory and runpip install -r requirements.txtThis file contains core dependencies such as NumPy, Matplotlib, etc. - Environment Configuration::
Modify as necessaryconfig.yamlfile to set the number of intelligences, simulation parameters, etc.; for GPU acceleration, an additional CUDA toolkit needs to be installed
Verify Installation
Run the sample scriptexamples/basic_demo.pyIf the visualization window of the smart body's movement trajectory is successfully displayed, it proves that the installation is correct. Frequently asked questions include:
- Dependency conflicts: clean virtual environments are recommended
- Path error: make sure the terminal working directory is in the project root folder
- Permission issues: Linux/macOS systems may require sudo privileges
This answer comes from the articleQuantum Swarm: a framework for multi-intelligence cluster collaborationThe































