留个笔记:
法一:给python 3.10.2安装manimCE,怎样使用pip才不影响 python 3.8.5 的manimGL(互不影响):
py -3.10-64 -m pip install manim
py -3.10-64 -m pip install jupyter
py -3.8-64 -m pip install -e .
py -3.10-64 -m pip install manim-physics
法二:pip把包安装到其他位置,未指定解释器的情况下按照环境变量的先后顺序默认装到靠前的py版本下(不推荐使用):
pip install -i package(包名) --target=C:\Python310\
强烈推荐第一种方法,其他的一些库的安装也可以参照这种方法