Skip to content

Commit

Permalink
fix typo in README.md (#397)
Browse files Browse the repository at this point in the history
`install requirements` should be placed after `clone repository`.
  • Loading branch information
tuduweb committed Jan 27, 2022
1 parent 3996f81 commit 3cda376
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,17 +157,21 @@ Besides, We provide a notebook [here](./demo/demo-inference-with-pytorch.ipynb)
conda install pytorch torchvision cudatoolkit=11.1 -c pytorch -c conda-forge
```

3. Install requirements
3. Clone this repository

```shell script
pip install -r requirements.txt
git clone https://github.com/RangiLyu/nanodet.git
cd nanodet
```

4. Setup NanoDet
4. Install requirements

```shell script
git clone https://github.com/RangiLyu/nanodet.git
cd nanodet
pip install -r requirements.txt
```

5. Setup NanoDet
```shell script
python setup.py develop
```

Expand Down

0 comments on commit 3cda376

Please sign in to comment.