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
In the Readme.md for this project, it calls for pip3 install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAPI and I wasn't able to get it to work with just that command.
I continuously got this error:
pip3 install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAPI
Collecting git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAPI
Cloning https://github.com/philferriere/cocoapi.git to c:\users\c m\appdata\local\temp\pip-req-build-y7ldg9q5
Running command git clone -q https://github.com/philferriere/cocoapi.git 'C:\Users\C M\AppData\Local\Temp\pip-req-build-y7ldg9q5'
Using legacy 'setup.py install' for pycocotools, since package 'wheel' is not installed.
Installing collected packages: pycocotools
Running setup.py install for pycocotools ... error
ERROR: Command errored out with exit status 1:
command: 'c:\users\c m\pycharmprojects\taco\venv\scripts\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\C M\\AppData\\Local\\Temp\\pip-req-build-y7ldg9q5\\PythonAPI\\setup.py'"'"'; __f
ile__='"'"'C:\\Users\\C M\\AppData\\Local\\Temp\\pip-req-build-y7ldg9q5\\PythonAPI\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(
code, __file__, '"'"'exec'"'"'))' install --record 'C:\Users\C M\AppData\Local\Temp\pip-record-o7lt68yh\install-record.txt' --single-version-externally-managed --compile --install-headers 'c:\users\c m\pycharmprojects\taco\ve
nv\include\site\python3.8\pycocotools'
cwd: C:\Users\C M\AppData\Local\Temp\pip-req-build-y7ldg9q5\PythonAPI
Complete output (13 lines):
running install
running build
running build_py
creating build
creating build\lib.win-amd64-3.8
creating build\lib.win-amd64-3.8\pycocotools
copying pycocotools\coco.py -> build\lib.win-amd64-3.8\pycocotools
copying pycocotools\cocoeval.py -> build\lib.win-amd64-3.8\pycocotools
copying pycocotools\mask.py -> build\lib.win-amd64-3.8\pycocotools
copying pycocotools\__init__.py -> build\lib.win-amd64-3.8\pycocotools
running build_ext
building 'pycocotools._mask' extension
error: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": https://visualstudio.microsoft.com/visual-cpp-build-tools/
----------------------------------------
ERROR: Command errored out with exit status 1: 'c:\users\c m\pycharmprojects\taco\venv\scripts\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\C M\\AppData\\Local\\Temp\\pip-req-build-y7ldg9
q5\\PythonAPI\\setup.py'"'"'; __file__='"'"'C:\\Users\\C M\\AppData\\Local\\Temp\\pip-req-build-y7ldg9q5\\PythonAPI\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"
'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record 'C:\Users\C M\AppData\Local\Temp\pip-record-o7lt68yh\install-record.txt' --single-version-externally-managed --compile --install-headers 'c:\
users\c m\pycharmprojects\taco\venv\include\site\python3.8\pycocotools' Check the logs for full command output.
Go to https://visualstudio.microsoft.com/downloads/ under Tools for Visual Studio 2019 download Build Tools for Visual Studio 2019 (~1MB download)
Run and under Workload select C++ Build Tools, then under Options select MSVC v142 - VS 2019 C++ x64/x86 build tools (v 14.26) & Windows 10 SDK (10.0.17763.0) only (selects newer versions if available)
Also worth mentioning that graphviz must be installed when creating the conda environment. Installing it inside the enviroment using git on the terminal will not work.
In the Readme.md for this project, it calls for
pip3 install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAPI
and I wasn't able to get it to work with just that command.I continuously got this error:
At first I followed the suggestion and went to https://visualstudio.microsoft.com/visual-cpp-build-tools/, but installing that continued to show the same error.
I stumbled on this How to install c++ build tools in a conda virtual environment for use with cython/setproctitle, and the suggestion of installing Microsoft Visual C++ 14.0 worked and I was able to get the CocoAPI to install.
The text was updated successfully, but these errors were encountered: