Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
mmdetection3d
Commits
a2b849a9
"examples/vscode:/vscode.git/clone" did not exist on "bdbcaa9852565d3854100f6504266ffcc7405b05"
Unverified
Commit
a2b849a9
authored
Mar 16, 2022
by
Tai-Wang
Committed by
GitHub
Mar 16, 2022
Browse files
Fix the mmcv/mmdet installation version in getting_started (#1319)
parent
7fefb700
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
docs/en/getting_started.md
docs/en/getting_started.md
+4
-4
docs/zh_cn/getting_started.md
docs/zh_cn/getting_started.md
+4
-4
No files found.
docs/en/getting_started.md
View file @
a2b849a9
...
@@ -111,7 +111,7 @@ pip install mmcv-full
...
@@ -111,7 +111,7 @@ pip install mmcv-full
**d. Install [MMDetection](https://github.com/open-mmlab/mmdetection).**
**d. Install [MMDetection](https://github.com/open-mmlab/mmdetection).**
```
shell
```
shell
pip
install
mmdet
==
2.14.0
pip
install
mmdet
```
```
Optionally, you could also build MMDetection from source in case you want to modify the code:
Optionally, you could also build MMDetection from source in case you want to modify the code:
...
@@ -119,7 +119,7 @@ Optionally, you could also build MMDetection from source in case you want to mod
...
@@ -119,7 +119,7 @@ Optionally, you could also build MMDetection from source in case you want to mod
```
shell
```
shell
git clone https://github.com/open-mmlab/mmdetection.git
git clone https://github.com/open-mmlab/mmdetection.git
cd
mmdetection
cd
mmdetection
git checkout v2.1
4
.0
# switch to v2.1
4
.0 branch
git checkout v2.1
9
.0
# switch to v2.1
9
.0 branch
pip
install
-r
requirements/build.txt
pip
install
-r
requirements/build.txt
pip
install
-v
-e
.
# or "python setup.py develop"
pip
install
-v
-e
.
# or "python setup.py develop"
```
```
...
@@ -127,7 +127,7 @@ pip install -v -e . # or "python setup.py develop"
...
@@ -127,7 +127,7 @@ pip install -v -e . # or "python setup.py develop"
**e. Install [MMSegmentation](https://github.com/open-mmlab/mmsegmentation).**
**e. Install [MMSegmentation](https://github.com/open-mmlab/mmsegmentation).**
```
shell
```
shell
pip
install
mmsegmentation
==
0.14.1
pip
install
mmsegmentation
```
```
Optionally, you could also build MMSegmentation from source in case you want to modify the code:
Optionally, you could also build MMSegmentation from source in case you want to modify the code:
...
@@ -135,7 +135,7 @@ Optionally, you could also build MMSegmentation from source in case you want to
...
@@ -135,7 +135,7 @@ Optionally, you could also build MMSegmentation from source in case you want to
```
shell
```
shell
git clone https://github.com/open-mmlab/mmsegmentation.git
git clone https://github.com/open-mmlab/mmsegmentation.git
cd
mmsegmentation
cd
mmsegmentation
git checkout v0.
14.1
# switch to v0.
14.1
branch
git checkout v0.
20.0
# switch to v0.
20.0
branch
pip
install
-e
.
# or "python setup.py develop"
pip
install
-e
.
# or "python setup.py develop"
```
```
...
...
docs/zh_cn/getting_started.md
View file @
a2b849a9
...
@@ -102,7 +102,7 @@ pip install mmcv-full
...
@@ -102,7 +102,7 @@ pip install mmcv-full
**d. 安装 [MMDetection](https://github.com/open-mmlab/mmdetection).**
**d. 安装 [MMDetection](https://github.com/open-mmlab/mmdetection).**
```
shell
```
shell
pip
install
mmdet
==
2.14.0
pip
install
mmdet
```
```
同时,如果你想修改这部分的代码,也可以通过以下命令从源码编译 MMDetection:
同时,如果你想修改这部分的代码,也可以通过以下命令从源码编译 MMDetection:
...
@@ -110,7 +110,7 @@ pip install mmdet==2.14.0
...
@@ -110,7 +110,7 @@ pip install mmdet==2.14.0
```
shell
```
shell
git clone https://github.com/open-mmlab/mmdetection.git
git clone https://github.com/open-mmlab/mmdetection.git
cd
mmdetection
cd
mmdetection
git checkout v2.1
4
.0
# 转到 v2.1
4
.0 分支
git checkout v2.1
9
.0
# 转到 v2.1
9
.0 分支
pip
install
-r
requirements/build.txt
pip
install
-r
requirements/build.txt
pip
install
-v
-e
.
# or "python setup.py develop"
pip
install
-v
-e
.
# or "python setup.py develop"
```
```
...
@@ -118,14 +118,14 @@ pip install -v -e . # or "python setup.py develop"
...
@@ -118,14 +118,14 @@ pip install -v -e . # or "python setup.py develop"
**e. 安装 [MMSegmentation](https://github.com/open-mmlab/mmsegmentation).**
**e. 安装 [MMSegmentation](https://github.com/open-mmlab/mmsegmentation).**
```
shell
```
shell
pip
install
mmsegmentation
==
0.14.1
pip
install
mmsegmentation
```
```
同时,如果你想修改这部分的代码,也可以通过以下命令从源码编译 MMSegmentation:
同时,如果你想修改这部分的代码,也可以通过以下命令从源码编译 MMSegmentation:
```
shell
```
shell
git clone https://github.com/open-mmlab/mmsegmentation.git
git clone https://github.com/open-mmlab/mmsegmentation.git
cd
mmsegmentation
cd
mmsegmentation
git checkout v0.
14.1
# switch to v0.
14.1
branch
git checkout v0.
20.0
# switch to v0.
20.0
branch
pip
install
-e
.
# or "python setup.py develop"
pip
install
-e
.
# or "python setup.py develop"
```
```
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment