You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Build the inference engine extension libraries you need.
40
+
41
+
- [ONNX Runtime](backends/onnxruntime.md)
42
+
- [TensorRT](backends/tensorrt.md)
43
+
- [ncnn](backends/ncnn.md)
44
+
- [pplnn](backends/pplnn.md)
45
+
- [OpenVINO](backends/openvino.md)
46
+
- [TorchScript](backends/torchscript.md)
47
+
48
+
### Install mmdeploy
49
+
50
+
```bash
51
+
cd${MMDEPLOY_DIR}# To mmdeploy root directory
52
+
pip install -e .
53
+
```
54
+
55
+
**Note**
56
+
57
+
- Some dependencies are optional. Simply running `pip install -e .` will only install the minimum runtime requirements.
58
+
To use optional dependencies, install them manually with `pip install -r requirements/optional.txt` or specify desired extras when calling `pip` (e.g. `pip install -e . [optional]`).
59
+
Valid keys for the extras field are: `all`, `tests`, `build`, `optional`.
60
+
61
+
### Build SDK
62
+
63
+
Readers can skip this chapter if you are only interested in model converter.
64
+
65
+
#### Dependencies
66
+
67
+
Currently, SDK is tested on Linux x86-64, more platforms will be added in the future. The following packages are required to build MMDeploy SDK.
68
+
69
+
Each package's installation command is given based on Ubuntu 18.04.
0 commit comments