How can I share a project (through Github) with someone when my project is using multiple personal modules/packages?
Using pip freeze > requirements.txt
is obviously not enough, because there is no place to download packages I created specifically for this project.
Is pushing the contents of the project in my repository as a virtual environment viable solution?
What if I also need to have an older version of Python (3.6.5) for example?
Ty,