Skip to content

Commit

Permalink
add 5th episode
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarzegary committed Jun 7, 2021
1 parent 80838de commit a640fdb
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ This repository contains the list of commands executed in each episode of the ["

[Episode 3 - Introduction to Linux shell commands in bash](episode-3-introduction-to-linux-shell-commands.md)
[Episode 4 - Install programs using package managers: GNU Octave](episode-4-install-gnu-octave-using-package-managers.md)
[Episode 5 - Install Visual Studio Code and Atom using installation packages and dpkg](episode-5-install-vs-code-atom-using-dpkg.md)
33 changes: 33 additions & 0 deletions episode-5-install-vs-code-atom-using-dpkg.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# [Environment Setup 5] Install Visual Studio Code and Atom using installation packages and dpkg

* Navigate to the downloads folder

`$ cd Downloads/`

* Install the downloaded deb package for VS Code

`$ sudo dpkg -i code_1.56.2-1620838498_amd64.deb `

* Check if there is any broken dependency

`$ sudo apt install -f`

* Run VS Code

`$ code`

* Install the downloaded installer package for Atom

`$ sudo dpkg -i atom-amd64.deb `

* Reconfigure the dpkg packages to list the broken dependencies

`$ sudo dpkg --configure -a`

* Install the broken dependencies

`$ sudo apt install -f`

* Run Atom

`$ atom`

0 comments on commit a640fdb

Please sign in to comment.