Search⌘ K
AI Features

Appendix

Explore the essential setup steps for using Python with Transcrypt locally. Learn to activate virtual environments, run Transcrypt with debugging options, start simple HTTP servers, and manage Node.js projects. This lesson equips you to prepare your environment efficiently for front-end development using Python and React.

Local execution

The following commands will be needed when implementing ideas from this course on your own machine. The course already has this setup implemented.

Activating the Python environment

Activate the virtual environment using the appropriate command for our operating system:

For Windows, use this:

C:\> venv\Scripts\activate 

For Mac or Linux, use this:

$ source venv/bin/activate

Specify the Python version if you have multiple versions on your system. The ...