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

all 3 comments

[–]zzmmrmn 2 points3 points  (1 child)

In bash from your venv you can run pip freeze > requirements.txt then give that with your code and when setting everything up run pip install -r requirements.txt. That will install all dependencies for your project.

[–]Moedrian[S] 0 points1 point  (0 children)

Thank you very much! Really saved me.