Fast API Basics
eutopiantech
July 10, 2025
Information
Good Practices
Set up a virtual environment to keeps your project’s dependencies separate from other projects
-
cd to your project root
- Run the command below in the terminal
python -m venv app_name_env
Anytime you want to add a dependancy open a new terminal and run the command below
app_name_env\Scripts\activate
Your command line should now read
(app_name_env) PS C:\>
Comments & Answers
Please login to comment.
Be the first to add a comment or answer!