The instructions for setting up your environment may differ depending on which OS you are using, but they all have basic dependencies:
- Git
- Python (3.7 or above)
- NodeJS (12 or above)
Take the following steps in order to install these dependencies.
Via apt or a package manager in your distribution:
sudo apt install gitVia apt or a package manager in your distribution. It is recommended to also install venv support.
sudo apt install python3 python3-venvVia bash script and apt or a package manager in your distro. It is also recommended to install the last LTS.
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt-get install -y nodejsGit for Windows is available for download here.
Python for Windows is available for download here. You should use version 3.7 or greater. Follow the installation instructions and add installed location to Path for it be found by other tools.
Good instructions on how to install Python virtual environments on Windows machine are available here
NodeJs for Windows is available for download here. It is recommended to install the LTS version.