In the software manager, reviews often complain about how the packages are out of date. But can't you upgrade the packages using sudo apt upgrade and sudo apt update?
Asked
Active
Viewed 2,880 times
1
Manuel Jordan
- 2,082
1 Answers
2
No. apt upgrade only installs updates to packages that are already installed; it will not add new dependencies.
The command you want is apt full-upgrade which will also install updates that have dependences that are not already present.
Liam Proven
- 741