Install Python
Install Python
How to install Python
There a couple of ways to install Python in your computer:
- You can go to the official page and follow the given instructions for your operation system.
- You can use the asdf.
Validate Python is installed
Once you have Python installed you should be able to run the following command in the terminal:
python --version # => Python 3.12.0
Install Poetry
In this book we will be using Poetry as our dependency manager.
In order to install Poetry you can run the following command:
curl -sSL https://install.python-poetry.org | python3 -