I have created a small project (personal) and I wanted people to use it. Currently it resides in a private GitHub repository and I want to share it with others. One thing I knew about creating a Python application was that I have to make atleast one file that starts the whole project. Is that true/ is my knowledge correct?
Now, my computer, on which I have made the project, has millions of Python packages (because it was unmonitored and I used to install every package I ever came across) which I do not want the user to download. I only want the necessary packages/libraries to be installed on the user's system. But pip list > requirements.txt lists down all packages on my system. How to just make the required packages get installed on the user's system? Doing it manually is impossible since there are way too many packages used in my project.Also how to make it into a Python application?
↧
Python requirements.txt file setup for a Python project
↧