How do I install google chrome in Raspbian? Ive tried downloading it from the internet but it does not work.
Asked
Active
Viewed 868 times
2 Answers
1
There is no available chromium in repository. You should follow this guide: https://www.raspberrypi.org/forums/viewtopic.php?t=121195
Huczu
- 1,251
- 9
- 13
-2
First open up terminal, then paste the following commands in order:
sudo apt-get update
^ This updates the available packages + the versions
sudo apt-get upgrade
^ This actually upgrades the packages (it's good practice to run both of the commands before installing any new packages)
sudo apt-get install chromium
^ This installs Chromium, the open source project by Google that Google Packages into Google Chrome (they are the same thing)
That is it! Hope I helped!
Zakaria Ridouh
- 113
- 1