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
Copy file name to clipboardExpand all lines: docs/get_started.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,8 +26,10 @@ The compatible MMSegmentation and MMCV versions are as below. Please install the
26
26
| 0.7.0 | mmcv-full>=1.1.2, <1.2.0 |
27
27
| 0.6.0 | mmcv-full>=1.1.2, <1.2.0 |
28
28
29
-
Note: You need to run `pip uninstall mmcv` first if you have mmcv installed.
29
+
:::{note}
30
+
You need to run `pip uninstall mmcv` first if you have mmcv installed.
30
31
If mmcv and mmcv-full are both installed, there will be `ModuleNotFoundError`.
32
+
:::
31
33
32
34
## Installation
33
35
@@ -105,7 +107,7 @@ cd mmsegmentation
105
107
pip install -e .# or "python setup.py develop"
106
108
```
107
109
108
-
Note:
110
+
:::{note}
109
111
110
112
1. When training or testing models on Windows, please ensure that all the '\\' in paths are replaced with '/'. Add .replace('\\', '/') to your python code wherever path strings occur.
111
113
2. The `version+git_hash` will also be saved in trained models meta, e.g. 0.5.0+c415a2e.
@@ -114,6 +116,7 @@ Note:
114
116
you can install it before installing MMCV.
115
117
5. Some dependencies are optional. Simply running `pip install -e .` will only install the minimum runtime requirements.
116
118
To use optional dependencies like `cityscapessripts` either install them manually with `pip install -r requirements/optional.txt` or specify desired extras when calling `pip` (e.g. `pip install -e .[optional]`). Valid keys for the extras field are: `all`, `tests`, `build`, and `optional`.
0 commit comments