092374
092374

Reputation: 25

"manim: command not found". Un and Reinstalled Manim and now having issues

/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

Answers (3)

Ed Roberts
Ed Roberts

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

Chalathip
Chalathip

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

Benjamin Hackl
Benjamin Hackl

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

  • change the call to the executable manim to the module python -m manim (where python is the correct Python version), or
  • add the /Users/username/opt/anaconda3/bin to the PATH.

Upvotes: 2

Related Questions