ModuleNotFoundError even after upgrading and force-reinstall #265
-
When trying to re-calculate reliability for EL1000, I get: Following installation instructions, I did pip3 uninstall ChildProject and then pip3 install ChildProject --upgrade. as well as pip3 install git+https://github.com/LAAC-LSCP/ChildProject.git --force-reinstall But I can't shake that error. The output of the commands above definitely includes pyannote:
and later
and also
I'm working in oberon in my ChildProjectVenv. Just in case, I'm updating my pip and force-reinstalling again... |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Try But I suggest you use python 3.8 at least. # delete the environment
deactivate
rm -rf ~/ChildProjectVenv
conda activate base
# make sure your version of python is recent enough (3.8+)
python3 --version
# recreate the environment
python3 -m venv ~/ChildProjectVenv
source ~/ChildProjectVenv/bin/activate
pip install --upgrade pip
pip3 install ChildProject |
Beta Was this translation helpful? Give feedback.
Try
pip install pyannote.metrics
? not sure why it won't install by itselfEDIT: oh I get it; you need python >= 3.7 (pyannote metrics may have issues with older versions of python)
But I suggest you use python 3.8 at least.
Maybe you should delete your venv and create it again: