Manu,
The Python version you run from UniVerse is the one defined for UniVerse, the one you execute at the dos prompt is based off the PATH environment variable.
Put the UniVerse Python path in your PATH environment variable, and you should be ok.
--
The following is a way to check:
>PYTHON
python> import sys
python> sys.executable
'C:\\U2\\UV\\python\\python.exe'
python> exit()
>DOS
Microsoft Windows [Version 10.0.19045.4529]
(c) Microsoft Corporation. All rights reserved.
C:\U2\UV>python
Python 3.11.1 (tags/v3.11.1:a7a450f, Dec 6 2022, 19:58:39) [MSC v.1934 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.executable
'C:\\U2\\UV\\python\\python.exe'
>>> exit()
C:\U2\UV>echo %PATH%
;C:\U2\UV\python;C:...
Mike