sudo apt install [package name]
sudo apt install zip
Tip: If you want to remove a package and install a different package in one step, try:
sudo apt remove htop vim+
Another way to do the same thing:
sudo apt install htop- vim
NOTE: The + (add) and - (remove) suffix to package names can override and flip an install/remove switch.