A Few Things to Note
Let’s learn how to run our first application using Transcrypt.
We'll cover the following...
Setting up a Python environment
It is highly recommended that we use a virtual environment whenever we start a new project. Try using the commands below in the terminal widget given at the end of the lesson.
Press + to interact
python3.9 -m venv venv
First, we need to specify the Python version if we have multiple versions on our system. The first venv
is the ...