Install Party
Let's start by installing all the programs we need!
To do this, we will need to use the terminal: make sure that you know how to open it and use it.
Help! I don't know what a terminal is 😢
Don't worry, we will explain you the basics 😉
- Windows
- MacOS
- Linux
On Windows, you have two terminals: CMD
, the oldest one, and Powershell
, the new one. We recommend you to
only use Powershell, wich has less issues.
To open a terminal, simply type Powershell
in the search bar of your system, and open it like any
application. There you are! A new window with some white lines should appear.
You can also open PowerShell from a right click on the Start Menu, but be careful to select the "PowerShell" and not "PowerShell (Admin)" !
The directory where you are is shown on the last line. By default, it should be your user directory, so
something like C:\Users\michel\
. You can deplace to other directories with:
cd ".\my_subdirectory\"
: go into the subdirectorymy_subdirectory
(try with the default directoryDownloads
!). The.
in this command represents the current directory. Note that the"
are optionals (they are required only if your path contains spaces).cd ..
: go to the parent directoryls
: list all the files and sub-directories of the current directory
Open Spotlight, and type terminal
. Then you can launch the terminal.app
application, and voilà!
By default, you are in your home directory. You can deplace to other directories with:
cd "./my_subdirectory/"
: go into the subdirectorymy_subdirectory
. The.
in this command represents the current directory. Note that the"
are optionals (they are required only if your path contains spaces).cd ..
: go to the parent directoryls
: list all the files and sub-directories of the current directory
The name of your terminal depends on your distribution. For example, it is "Terminal" for Ubuntu, or "Konsole" for Kubuntu. Anyway, on most distros you can open it with the keyboard shotcut CTRL+ALT+T.
By default, you are in your home directory. You can change to other directories with:
cd "./my_subdirectory/"
: go into the subdirectorymy_subdirectory
. The.
in this command represents the current directory. Note that the"
are optionals (they are required only if your path contains spaces).cd ..
: go to the parent directoryls
: list all the files and sub-directories of the current directory
In general, all the commands have the same syntax:
program --option1 --option2 arg1 arg2
Some explanations:
program
is the name of the program you want to use. It could bepython
for example, orcd
(forChange Directory
), etc...--option
is an option you can pass to the program, which is most of the time optional. They always have the--
at the begingging which indicates it is an option. You can also find shortcuts for options, with one dash (for example-o
).arg
is the main arument you pass to the program. For example, for thecd
program, you pass the name of the directory where you want to go as an argument.- the space
Tip: all programs have in general the --help
option to show all the options
and arguments possible, and the --version
option to check the version.
Remember it, they are very useful! 🤩
You can skip the installation by working directly in your browser. See the Pick an OS section.
📄️ Pick an OS
First of all, you need to pick an OS. You can use any OS, but they all have
📄️ Python
Python is an easy-to-learn language used for the server
📄️ Node.js
JavaScript, the language of the web
📄️ Make
Make everything with Make!
📄️ VSCode
A far better text editor than Notepad.exe
📄️ Git
Once you started to use it, you can't live without it anymore