Hi, I am developing a plugin for metashape, in order to avoid dependencies conflict for Metashape build-in python, my plugin will generate a venv first when install dependencies in that virtual environment and execute in that venv later.
The following command to create venv works good on Linux
/opt/agisoft/metashape-pro/python/bin/python3.9 -m venv /path/to/myvenv
However, when executing the same command on Windows (tested on 2.1.4 & 2.2.1), it gave the following error:
C:\Apps\Agisoft\Metashape Pro\python>python.exe -m venv /path/to/myvenv
Unable to copy 'C:\\Apps\\Agisoft\\Metashape Pro\\python\\venvlauncher.exe'
Error: [WinError 2] The system can't find the files.
It seems python official website of the same version works perfectly, without venvlauncher.exe in the python root folder.
Could you please check if it possible to fix the problem?