Free up some disk space.
sudo apt-get clean
NOTE: This may not be desirable if you have a slow Internet connection, since it will cause you to re-download any packages you need to install a program.
du -sh /var/cache/apt/archives
sudo apt-get autoclean
NOTE: autoclean only removes those retrieved package files that have a newer version now, and so will not be used anymore.
sudo apt-get autoremove
NOTE: autoremove removes libraries and packages that were installed automatically to satisfy the dependencies of another installed package.