3C-SCSU / Avatar

MIT License
9 stars 130 forks source link

Add requirments.txt file #69

Closed KINGTUT10101 closed 9 months ago

KINGTUT10101 commented 10 months ago

You can create/generate requirement files for Python to make it easy to install all the needed libraries with one command. This is kind of similar to package-lock.json from NPM. You can manually write each package and its version in the file or you may be able to download a library to do it for you.

Requirement files usually go in the project's root directory.

More info can be found here: https://learnpython.com/blog/python-requirements-file/