This seems rather straightforward, but some things I can only assume.
You have installed a package called clever-web-3.18
. You didn't specify from where and how, but it's safe to assume it's not from any official Ubuntu Repository (since this package can't be found here).
This package is dependent on a package called python
, but this is not a package name found in Ubuntu repos either (the Python 2 package is called python2
).
So a number of problems are present here:
- You have installed an "unknown" package with problematic dependencies.
- It is most likely depending on an old version of Python, that is completely deprecated and unsupported.
- As such, it's also unlikely that anyone here can help you (since it's a unique and unsupported usecase).
Please clarify your question if you can elaborate on any of the points. But it seems that the dependencies of the package clever-web
are simply incompatible with current versions of Ubuntu.
The correct way to move forward here would most likely be to build the package you want (clever-web
) from source with the correct dependencies - but this will be another question (which I for one cannot answer).
A "dirty hack" might be to install the package without any dependencies. This is done by downloading the package file:
wget https://any.url.here/clever-web.deb
Now install the package with the dpkg
tool instead of apt
:
dpkg -i ./clever-web.deb
This may or may not work. And in this case, you probably also need python-is-python3
installed as you mention.