Guest User

Untitled

a guest
Feb 23rd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. # Setup Ubuntu Development Using ubuntu-make
  2.  
  3. Install repo for ubuntu make
  4. ```
  5. sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make
  6. sudo apt update
  7. sudo apt install ubuntu-make
  8. ```
  9.  
  10.  
  11. Install python in Ubuntu (Python are already install by default in Ubuntu)
  12. Check if python are install
  13.  
  14. ```
  15. python -V
  16. python3 -V
  17. ```
  18.  
  19. Install ruby programing language
  20.  
  21. ```
  22. sudo apt install ruby-full
  23. ```
  24.  
  25. Install the Rust programing language
  26.  
  27. ```
  28. umake rust
  29. ```
  30.  
  31. Install the Go programing language.
  32.  
  33. ```
  34. umake go
  35. ```
  36.  
  37. Install the swift programing language
  38.  
  39. ```
  40. umake swift
  41. ```
  42.  
  43. Install the scala programing language.
  44.  
  45. ```
  46. umake scala
  47. ```
  48.  
  49. Install android Studio
  50.  
  51. ```
  52. umake android android-studio
  53. ```
  54.  
  55. Install Visual Studio
  56.  
  57. ```
  58. umake web visual-studio-code
  59. ```
  60.  
  61. Install atom text editor
  62.  
  63. ```
  64. umake ide atom
  65. ```
  66.  
  67. You can list the available IDE with the command
  68.  
  69. ```
  70. umake ide -h
  71. ```
Add Comment
Please, Sign In to add comment