Ubuntu 22.04 (like all other previous versions), comes out with Python already installed by default, in fact if I open the Terminal and type:
cris@cris:~$ python3 -V
Python 3.10.6
So, Phyton is there !!
My question and problem arises when I try to install by script a Console SDK that i need to build applications.
If I start the installation of the SDK by a script.sh
, in the Terminal it gives me this error:
Package python is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or is only available from another source.
However the following packages replace it:
2to3 python2-minimal:i386 python2:i386 python2-minimal python2 dh-python python-is-python3
In fact in the script it is referred to as
python
and not as
python3
so, my question is but python
and python3
is not the same function/environment?
Or, because the script does look for python
and as python
is not installed since it calls phyton3
in the system?
I'm really confused here....