Grzegorz
Grzegorz
Yes, it is possible that this will be enough. However, you should probably pay attention to one more thing - which `python3x.dll` file to use. When creating a virtual environment,...
I don't have access to macOS to test, but it seems so. [PEP 587](https://peps.python.org/pep-0587/#configuration-files)
Analyzing the python [venv](https://github.com/python/cpython/blob/dc5471404489da53e6d591b52ba8886897ed3743/Lib/venv/__init__.py#L192) module also shows that it is platform-independent
And to determine whether to use an "isolated" configuration, I would check if the `VIRTUAL_ENV` environment variable exists.
I installed the latest version (1.3.006), but I don't know how to configure the `.ini` file. I tested in various ways, but it does not see the virtual environment. This...
Calling from the command level changes nothing. The expected behavior is: - create and activate a virtual environment: ``` > python -m venv venv > venv\Scripts\activate.bat ``` - run AutoCAD...