Error processing line 1 of /Users/myname/anaconda3/lib/python3.7/site-packages/vision-1.0.0-py3.7-nspkg.pth

Viewed 2545

I installed few different packages including manim, jupyter-manim but now I am keep getting this error on the terminal after any command:

Error processing line 1 of /Users/myname/anaconda3/lib/python3.7/site-packages/vision-1.0.0-py3.7-nspkg.pth:

I uninstalled manim , jupyter-manim but the error does not go away.

I also tried to conda update --all to update my python but that does not work either.

I am running on Mac Catalina, Anaconda Python 3.7.5 enter image description here

1 Answers

It is probably conflict with matplotlib. So run this command from cmd:

conda remove --name root matplotlib

conda install python="your version" matplotlib

Source is here

Related