We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
mmcv is updated to 1.7.1 as of 2023.
Here are errors
--------------------------------------------------------------------------- AssertionError Traceback (most recent call last) [<ipython-input-10-53e3c28fb569>](https://localhost:8080/#) in <module> 5 import numpy as np 6 ----> 7 import anime_face_detector 2 frames [/usr/local/lib/python3.8/dist-packages/mmpose/__init__.py](https://localhost:8080/#) in <module> 22 23 ---> 24 assert (mmcv_version >= digit_version(mmcv_minimum_version) 25 and mmcv_version <= digit_version(mmcv_maximum_version)), \ 26 f'MMCV=={mmcv.__version__} is used but incompatible. ' \ AssertionError: MMCV==1.7.1 is used but incompatible. Please install mmcv>=1.3.8, <=1.7.0.
The text was updated successfully, but these errors were encountered:
I had the same problem in Google Colab. I have solved it now.
!pip install numpy scipy numba --upgrade
After updating numpy, I executed the following code. And it worked.
!pip install openmim>=0.2.1 #!mim install mmcv-full>=1.6.1 !pip install mmcv-full==1.7.0 -f https://download.openmmlab.com/mmcv/dist/cu116/torch1.13/index.html !pip install mmdet>=2.25.1 !pip install mmpose>=0.28.1 !pip install -U moviepy>=1.0.3 !git clone https://github.com/hysts/anime-face-detector %cd anime-face-detector import cv2 import matplotlib.pyplot as plt import numpy as np from anime_face_detector import create_detector
Sorry, something went wrong.
No branches or pull requests
Hi,
mmcv is updated to 1.7.1 as of 2023.
Here are errors
The text was updated successfully, but these errors were encountered: