When I run !python -V, in jupyterlab I have Python 3.8.13
When I run !py -V, also in jupyter I have this time Python 3.10.7
When I run python -V and py -V in Powershell I have Python 3.10.7
When I run
import sys
print(sys.executable)
print(sys.version)
print(sys.version_info)
I have 3.10.7 (tags/v3.10.7:6cc6b13, Sep 5 2022, 14:08:36) [MSC v.1933 64 bit (AMD64)] sys.version_info(major=3, minor=10, micro=7, releaselevel='final', serial=0)
Could you tell me why the first one is different from the others?
I think it has to be an issue with conda version but I don't know where it comes from.
Thanks