That means you are mixing 32 and 64 bit binaries. Also, python3 is installed along side 2.7, but 2.7 is still the default one used on your system. To make sure that's the case, run :
To fix the promblem, try the following:
Quote:
sudo apt-get remove firefox
sudo apt-get remove python (this will remove the default 2.7 version)
cd /usr/bin
sudo ln -s python3 python (this will make python 3 the default python on your system)
sudo apt-get check
sudo apt-get clean
sudo apt-get install firefox
sudo apt-get install chromium (for the open source version of google chrome)
firefox &
|