diff --git a/coretex/cli/modules/utils.py b/coretex/cli/modules/utils.py index 2187eb89..af9cb443 100644 --- a/coretex/cli/modules/utils.py +++ b/coretex/cli/modules/utils.py @@ -76,7 +76,7 @@ def checkEnvironment() -> None: return try: - command([str(venvCoretex), "version"], check = True) + command([str(venvCoretex), "version"], check = True, ignoreStderr = True, ignoreStdout = True) except Exception: createEnvironment(venvPython) return