Sometimes I download the python source code from github and don\'t know how to install all the dependencies. If there is no requirements.txt file I
github
requirements.txt
best way for Python 3 is:
pip3 freeze > requirements.txt
it worked for me...