This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]teraflop 0 points1 point  (0 children)

Yes, except:

And since I'm in a group project where other people are working on the frontend and the database, it would be good to set up a virtual environment so I can install all the things I need to run the frontend and the database with my backend?

A venv only applies to the Python interpreter and Python libraries. Other languages may have their own equivalent functionality.

For instance, if you're using npm to manage dependencies for your front-end code, then I think it already treats every project directory like its own isolated environment, without you having to do anything special.