You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe torchvision is missing from the requirements. Also, it would be great if there was a standard setuptools compatible setup.py or setup.cfg here.
Also, in Dockerfile there's a mistake on the last line:
RUN git+https://github.com/cocodataset/cocoapi.git#subdirectory=PythonAPI & pip install easyimages
This will give:
/bin/sh: 1: git+https://github.com/cocodataset/cocoapi.git#subdirectory=PythonAPI: not found
Perhaps you meant:
RUN pip install easyimages pycocotools
The text was updated successfully, but these errors were encountered:
I believe
torchvision
is missing from the requirements. Also, it would be great if there was a standard setuptools compatiblesetup.py
orsetup.cfg
here.Also, in Dockerfile there's a mistake on the last line:
RUN git+https://github.com/cocodataset/cocoapi.git#subdirectory=PythonAPI & pip install easyimages
This will give:
Perhaps you meant:
RUN pip install easyimages pycocotools
The text was updated successfully, but these errors were encountered: