Reputation: 25
/bin/sh: manim: command not found
From other answers I've found it seems to be an issue with path or directory? I'm not sure though and I don't want to make things worse. Does anyone know how to fix this? Mac user btw.
Upvotes: 1
Views: 5546
Reputation: 336
The anaconda path was in .zshrc but manim was not found. I added: /Users/username/opt/anaconda3/manimenvelope/bin to PATH and manim now works normally.
Upvotes: 0
Reputation: 11
If you use Manim Community Edition, there is a change from manim
to manimce
.
So on the command line, please use the following instead.
$ manimce
Please have a look at https://stackoverflow.com/a/74975758/20905930
Upvotes: 1
Reputation: 1161
For the sake of completeness: we resolved this question on Manim's Discord server. The main problem was that the executables of anaconda's Python were not added to the system's PATH
.
Resolution: either
manim
to the module python -m manim
(where python
is the correct Python version), or/Users/username/opt/anaconda3/bin
to the PATH
.Upvotes: 2