I'm running ubuntu 10.04.
I just ran the command,
sudo apt-get install php5-gd
but it gave me this error
The following packages have unmet dependencies:
php5-gd: Depends: php5-common (= 5.3.2-1ubuntu4) but 5.3.2-1ubuntu4.5 is to be installed
E: Broken packages
When tried an apt-get install on php5-common, but it says i already have the most recent version. How do i install php5-gd?
Additional Info
Here's what I see after doing a sudo apt-get update | grep main
Ign http://us.archive.ubuntu.com/ubuntu/ lucid/main Translation-en_US
Ign http://dl.google.com/linux/chrome/deb/ stable/main Translation-en_US
Ign http://dl.google.com/linux/talkplugin/deb/ stable/main Translation-en_US
Hit http://us.archive.ubuntu.com lucid/main Packages
Hit http://us.archive.ubuntu.com lucid/main Sources
Get:5 http://dl.google.com stable/main Packages [1,093B]
Get:6 http://dl.google.com stable/main Packages [737B]
Update package index files(current php5-common 5.3.2-1ubuntu4.7):
Check follow string in /etc/apt/sources.list:
Fix:
you probably just forgot to do
sudo apt-get update
if that doesnt work for you try
sudo apt-get update && apt-get -f install
if that doesnt work either you probably messed up your sources of something
last ultima ratio which is not recommended is to force it by something like
dpkg -i --force-depends-version
but you should rather try to fix the issue.without more information i unfortunately cant help you any further.