Rickaym / manim-sideview

A Manim utility extension for Visual Studio Code.
https://marketplace.visualstudio.com/items?itemName=Rickaym.manim-sideview
MIT License
99 stars 11 forks source link

Command line quotations needed #78

Closed ervinnemeth closed 5 months ago

ervinnemeth commented 6 months ago

Hi Team, Manim-sideview tries to run the following command on the command line:

some path\manim some other path\scene.py CreateCircle

It fails in cases where special characters are in the path. Like white space. The correct approach is:

"some path\manim" "some other path\scene.py" CreateCircle

Rickaym commented 5 months ago

Hey! The command manim-sideview in the terminal only represents the command being executed in the background. Technically, manim-sideview should still work despite special characters being in a path without the quotes, but I understand the worry seeing the command in the terminal.