개발모음집

ubuntu16.04에서 크롬, 아톰 설치하는 방법 본문

Server

ubuntu16.04에서 크롬, 아톰 설치하는 방법

void 2018. 5. 11. 09:00

Download the package (64 bit):

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

Install the package, forcing install of dependencies:

sudo dpkg -i --force-depends google-chrome-stable_current_amd64.deb

In case any dependencies didn't install (you would have a warning or failure message for this), you can force them via:

sudo apt-get install -f

Note: Refer to the link above for 32 bit systems.


출처 : stackoverflow


atom 설치하는 법


sudo add-apt-repository ppa:webupd8team/atom
sudo apt-get update
sudo apt-get install atom


출처 :  githhub.io