Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update requirement installation instructions & requirements. #1796

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ Step1. Install YOLOX from source.
```shell
git clone git@github.com:Megvii-BaseDetection/YOLOX.git
cd YOLOX
pip3 install -v -e . # or python3 setup.py develop
pip3 install -U pip setuptools
pip3 install torch torchvision torchaudio
pip3 install --no-build-isolation -v -e . # or python3 setup.py develop
```

</details>
Expand Down
5 changes: 3 additions & 2 deletions docs/quick_run.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ Step1. Install YOLOX.
```shell
git clone git@github.com:Megvii-BaseDetection/YOLOX.git
cd YOLOX
pip3 install -U pip && pip3 install -r requirements.txt
pip3 install -v -e . # or python3 setup.py develop
pip3 install -U pip setuptools
pip3 install torch torchvision torchaudio
pip3 install --no-build-isolation -v -e . # or python3 setup.py develop
```
Step2. Install [pycocotools](https://github.com/cocodataset/cocoapi).

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ tensorboard
# pycocotools corresponds to https://github.com/ppwwyyxx/cocoapi
pycocotools>=2.0.2
onnx>=1.13.0
onnx-simplifier==0.4.10

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kwadkore
Could you please tell me the reason behind this change?
This is how I got by, but I'd like to determine what would be the appropriate solution.
#1801

onnxsim==0.4.13