Skip to content

Commit

Permalink
[Docs] Refine README and installation documentations (open-mmlab#1977)
Browse files Browse the repository at this point in the history
* [Docs] Refine README

* refine table

* minor refinement

* refine

* refine

* add version info

* add version info

* update version info

* refine

* refine

* add module links in docs/en/introduction

* update docs/en

* fix typo

* update docs/en

* add version.json in zh_cn

* minor refinement

* update version.json

* update Dockerfile

* minor fix

* update installation of macOS

* resolve comments
  • Loading branch information
zhouzaida authored and cathyzhang222 committed Oct 20, 2022
1 parent c631779 commit 1f92f51
Show file tree
Hide file tree
Showing 14 changed files with 5,096 additions and 911 deletions.
239 changes: 60 additions & 179 deletions README.md

Large diffs are not rendered by default.

243 changes: 64 additions & 179 deletions README_zh-CN.md

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions docker/release/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,8 @@ RUN apt-get update && apt-get install -y libgl1 libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*

# Install mmcv-full
ARG MMCV="1.5.1"
RUN pip install openmim && mim install mmcv-full==${MMCV} && python -c 'import mmcv;print(mmcv.__version__)'
ARG MMCV=""
RUN if [ "${MMCV}" = "" ]; then pip install -U openmim && mim install mmcv-full; else pip install -U openmim && mim install mmcv-full==${MMCV}; fi

# Verify the installation
RUN python -c 'import mmcv;print(mmcv.__version__)'
Loading

0 comments on commit 1f92f51

Please sign in to comment.