LogoLogo
Official WebsiteClass RecordingsSchedules & EventsHomework
  • Welcome to MigraCode Barcelona
  • General Information
    • Code of conduct
    • Experiences
    • Copyright
  • Student support
    • 🙋Student Services
      • Volunteer Support
      • CodeBuddies
      • CodeWomen
      • Language Support
        • Language Lab
        • Oxford House
      • Psychological Support
      • Legal Support
      • Study space
    • 💼Finding a job
      • Self-branding
        • LinkedIn profile
        • GitHub profile
        • Self-developed profile
      • Online networking
      • Events & job fairs
  • COURSES
    • 🎧IT Support & Security Course
      • Structure
      • Course content
      • Planning & Schedule
      • Application process
        • Home assignment
    • 🎧IT Automation with Python Course
      • Structure
      • Course content
      • Planning & Schedule
      • Application process
        • Home assignment
    • 💻Web Development Course
      • Pre-Courses
      • Main Tools & Software
      • Slack Information
      • Grading System
      • Homework
      • Course content
        • Introduction
          • 1 - Dev Tools and command line
          • 2 - Git and Github
          • Git and GitHub Practice Session
        • HTML/CSS
          • 1 - Semantic HTML and CSS
          • 2 - Responsive Web and Layout
          • 3 - Bootstrap
        • JavaScript I
          • 1 - Hello Javascript
          • 2 - Expressions and loops
          • 3 - Arrays and callbacks
        • JavaScript II
        • JavaScript III
          • 1 - Good practices and debugging
          • 2 - APIs and fetch
          • 3 - Project
        • React
          • 1 - React 101
          • 2 - Reacting to changes
          • 3 - Fetching Data
          • Extra Materials
            • Class components
            • Routing
        • Node.js
          • 1 - Node and Express 101
          • 2 - APIs in Node
          • 3 - Workshop
        • Databases
          • 1 - Introduction to SQL
          • 2 - SQL with Node
          • 3 - CRUD with SQL and Node
        • Final Projects
          • Call for project ideas
          • List of projects
          • Planning and Calendar
          • How to start coding
          • Methodology
          • Team meetings
        • Professional Skills
          • Module 1: Soft Skills
          • Module 2: Employability
          • Module 3: Working in projects
    • 💾Advanced JS & ASP.NET course
      • Admission assignment
      • Self Study Prerequisites
        • Index
      • Course content
        • Index
  • Technical Guides
    • How to install course tools
    • Introduction to GIT
    • Trello in Scrum
    • Heroku Deployment
    • Git on Teams
  • Useful links
    • Official website of MigraCode Barcelona
    • Our Homework Trello board
    • Class Recordings
    • Schedules and Events
Powered by GitBook
On this page
  • Needed Tools
  • Install software in Ubuntu
  • Slack
  • Visual Studio Code
  • Node
  • Git
  • Chrome
  • PostgreSQL

Was this helpful?

Export as PDF
  1. Technical Guides

How to install course tools

PreviousIndexNextIntroduction to GIT

Last updated 4 years ago

Was this helpful?

Needed Tools

List of tools:

  • Slack

  • Zoom

  • VS Code

  • Chrome

  • GIT

  • Node

  • PostgreSQL

  • Dbeaver

Install software in Ubuntu

You can use the Ubuntu Software Center to search and install new software packages in the computer, it is like the Play Store used in Android mobiles. You will find this icon in the left bar:

Slack

Ubuntu: Go to the Ubuntu Software Center, search and install it.

Visual Studio Code

Ubuntu: Go to the Ubuntu Software Center, search and install it.

Node

Ubuntu: Go to the Ubuntu Software Center, search and install it.

To check installation open a Terminal and execute:

node -v

Git

Ubuntu: Go to the Ubuntu Software Center, search and install it.

Others: Go to the Git Website and follow the instructions.

To check installation open a Terminal and execute

git

Chrome

Ubuntu: open the terminal and execute the following commands

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

PostgreSQL

Ubuntu:

open the terminal and execute the following commands

sudo apt-get install postgresql-12

On Linux systems, there is no default password set.

To set the default password:

Run the psql command from the postgres user account:

sudo -u postgres psql postgres

Set the password, try to use the same password you have in your computer, migracode

\password postgres

Enter the password.

And finally close psql with the command:

\q

Others: https://www.postgresql.org/download/

Others: Go to the and follow the instructions.

Others: Go to the and follow the instructions.

Go to the and follow the instructions.

Others: Go to and follow the instructions

More info in:

Slack Website
Visual Studio Code Website
NodeJS Website
Chrome Website
https://docs.boundlessgeo.com/suite/1.1.1/dataadmin/pgGettingStarted/firstconnect.html