Search⌘ K
AI Features

A Few Things to Note

Explore how to set up a Python virtual environment to manage your project dependencies safely. Learn to activate the environment and install Transcrypt using pip. Understand the importance of specifying Python versions when creating virtual environments and gain confidence to start building front-end apps with Python and Transcrypt.

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.

Markdown
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 ...