From 598dca7fb8fd0282fc3296ff45e50fbc8e6282e5 Mon Sep 17 00:00:00 2001 From: leixy Date: Thu, 10 Feb 2022 19:26:36 +0800 Subject: [PATCH] [doc] Update note for cython_bbox install (#5187) --- docs/tutorials/INSTALL.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/tutorials/INSTALL.md b/docs/tutorials/INSTALL.md index 01cc10b5f..1895d78dd 100644 --- a/docs/tutorials/INSTALL.md +++ b/docs/tutorials/INSTALL.md @@ -94,6 +94,10 @@ python setup.py install 2. If you are using Python <= 3.6, `pycocotools` installing may failed with error like `distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('cython>=0.27.3')`, please install `cython` firstly, for example `pip install cython` +3. If you are working on Windows OS, 'cython_bbox' installing may failed because of the author has not published to pypi as of yet. So you can pip install directly from the github repo: + + ```pip install -e git+https://github.com/samson-wang/cython_bbox.git#egg=cython-bbox``` + After installation, make sure the tests pass: ```shell -- GitLab