You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have already installed Manim. I have also installed the Manim Side View extention (VS code), but it won't render the test script.
I have tried reinstalling it a few times, changing the extension's default manim path, running a command to try rendering it without the extention and nothing.
The output to the command checkhealth is this:
Fatal error in launcher: Unable to create process using '"C:\Python311\python.exe" "C:\tools\Manim\Scripts\manim.exe" checkhealth': O sistema nÒo pode encontrar o arquivo especificado.
(last line is in portuguese - "system could not find the specified file")
Expected behavior
Manim SV should render the animation as soon as I clicked the "set a side view" icon on top right, or when I inputed the terminal commad.
from manim import *
class CreateCircle(Scene):
def construct(self):
circle = Circle() # create a circle
circle.set_fill(PINK, opacity=0.5) # set the color and transparency
self.play(Create(circle)) # show the circle on screen
The text was updated successfully, but these errors were encountered:
Sorry for the late response...
When any module is called from python using python {module}, python tries treating it as a .py file instead. So, to run manim, you would need to use the -m flag like so, python -m maim [manim flags] filename.py
Description of bug / unexpected behavior
I have already installed Manim. I have also installed the Manim Side View extention (VS code), but it won't render the test script.
I have tried reinstalling it a few times, changing the extension's default manim path, running a command to try rendering it without the extention and nothing.
The output to the command checkhealth is this:
Fatal error in launcher: Unable to create process using '"C:\Python311\python.exe" "C:\tools\Manim\Scripts\manim.exe" checkhealth': O sistema nÒo pode encontrar o arquivo especificado.
(last line is in portuguese - "system could not find the specified file")
Expected behavior
Manim SV should render the animation as soon as I clicked the "set a side view" icon on top right, or when I inputed the terminal commad.
The text was updated successfully, but these errors were encountered: