如何从 windows 中的任何目录使用 manim

How to use manim from any directory in windows

我正在尝试从我的 windows 机器中的任何目录执行命令 python -m manim example_scenes.py SquareToCircle -pl。当我在 manim 库的根目录(包含 requirement.txt、README.md 和所有这些东西的目录)中执行命令时,它工作正常。我试图编辑我系统的路径环境变量,但它仍然不起作用。

错误 -

C:\Users\succu\AppData\Local\Programs\Python\Python38\python.exe: No module named manim

我确信我已经正确地编辑了我的路径变量,因为我可以从和位置调出 manim 根目录中的 README.md 和 requirements.txt 文件。

我该如何解决这个问题?我的 python 版本是 3.8.6

你的安装没有问题,发生的是你在本地使用 Manim,当你 运行:

python -m manim ...

等同于:

python manim.py ...

也就是说,您正在执行位于 Manim 本地副本中的 manim.py 模块(文件),因此您无法移动它。 解决它的最好方法是创建一个虚拟环境,使用 virtualenv 或 Anaconda,再次安装 Manim 依赖项并将 Manim 安装到该虚拟环境的路径。 如果你使用 virtualenv 它将是:

# Install virtualenv
C:\...\> python -m pip install virtualenv

# Move to some safe place, where that it will not be eliminated
C:\...\> cd C:\save_place...\

# Create and activate a virtual env
C:\save_place...\> virtualenv manimenv
C:\save_place...\> .\manimenv\Source\activate
(manimenv) C:\save_place...\> 

# Download here the repo and install it
(manimenv) C:\save_place...\> pip install -e .

# Try run manim - You don't need the 'python -m manim', only 'manim'
(manimenv) C:\save_place...\> manim example_scenes.py WriteStuff -pl

就是这样,这样做的好处是 manim 命令只会在您的虚拟环境中可用,您每次需要时都必须激活它。

更多信息:学习使用 virtualenv