There are two main groups of Linux distributions, Debian and Redhat
Debian system uses deb package, the package management is: apt-get
Redhat system uses rpm package, the package management is: rpm
Dependency detection failed The package you installed depends on the listed things, which are not in your system. You need to install all the dependencies. Also for Ubuntu, you should use apt-get or dpkg to install the deb package
I think you can talk about it. If you want to install the rpm method, follow the prompts
sudo apt-get install rpm
rpm -ivh xxx.rpm
debian
系的默认自带的是apt
包管理工具,redhat
系自带的是rpm
包管理工具,找该包对应的apt包名。最好更新下源,apt-get update
,然后apt-get install xxx
。There are two main groups of Linux distributions, Debian and Redhat
Debian system uses deb package, the package management is: apt-get
Redhat system uses rpm package, the package management is: rpm
Dependency detection failed
The package you installed depends on the listed things, which are not in your system. You need to install all the dependencies.
Also for Ubuntu, you should use apt-get or dpkg to install the deb package