We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1aad0c7 commit e31c207Copy full SHA for e31c207
manim/_config/__init__.py
@@ -3,6 +3,7 @@
3
from __future__ import annotations
4
5
import logging
6
+import os
7
from contextlib import contextmanager
8
from typing import Any, Generator
9
@@ -20,6 +21,8 @@
20
21
"cli_ctx_settings",
22
]
23
24
+os.environ["PYTHONIOENCODING"] = "utf-8"
25
+
26
parser = make_config_parser()
27
28
# The logger can be accessed from anywhere as manim.logger, or as
0 commit comments