Build Guide
Build Instructions
This document describes how to build MindIE-SD from source. For installing the compiled .whl package, see Installation Guide.
Build and Install
-
Clone the code using the following command:
git clone https://gitcode.com/Ascend/MindIE-SD.git && cd MindIE-SD python -m build --wheel --no-isolationNote
If dependencies such as wheel are not available in the environment, install them manually:
pip install build wheel -
For installing the generated
.whlpackage, see Installation Guide.For editable-mode installation (suitable for developer debugging; the version number can be overridden via the
MINDIE_SD_VERSION_OVERRIDEenvironment variable):pip install -e .