Deep-Live-Cam
Deep-Live-Cam copied to clipboard
An error occurred while downloading on Apple Computer (m1) pip3 pip3 version pip-24.2, What should I do
To fix this you could try to:
1. loosen the range of package versions you've specified
2. remove package versions to allow pip to attempt to solve the dependency conflict
ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts
I think you can try create a new conda env / virtualenv, and do all the installation. It should work
@hardwin1014 If you just unpin numpy in the requirement file, it might work. Mine at least installed, and I wound up with numpy==1.26.4
Try updating requirements.txt: numpy==1.23.5 -> numpy>=1.23.5,<1.27, this worked for me.
Are you sure you are using python 3.10.x?