Jefferson-Henrique / GetOldTweets-python

A project written in Python to get old tweets, it bypass some limitations of Twitter Official API.
MIT License
1.35k stars 809 forks source link

requirements.txt - packages #109

Open varundbhatnagar opened 7 years ago

varundbhatnagar commented 7 years ago

the pip install .txt didn't run on my computer because it didn't have package equality enabled. You should use > signs instead of == signs for the package requirements

aim0less commented 6 years ago

@varundbhatnagar did it fail with some error at the end, after the download of package finished? or you got some error which points to the error(because it didn't have package equality enabled) as you have mentioned? Please paste the error log in the comment. I have hunch; this might be due to some prerequisite missing. As all these operators(==,>,>= etc) are python specific not package specific. Also you may try to install latest install using "pip install lxml==4.1.1" and if it works, it indeed is prerequisite missing problem, hence NOT a ISSUE(in that case).