mmtracking
mmtracking copied to clipboard
Can't use MMCV in conda enviorment
I install MMCV 1.3.17 in my enviorment, but the program just use the MMCV 1.3.12 in ~/.local/bin/python3.7/ , How to fix it?
Check the path of python you used and try to use the python whose environment is the same as the MMCV 1.3.17.
If it still doesn't work, try
export PYTHONPATH={the path of MMCV1.3.17 library}:$PYTHONPATH
Thanks