remove json from requirements.txt
Timothy-Pulliam opened this issue · 1 comments
Timothy-Pulliam commented
$ python --version
Python 3.6.5
$ python -m pip install json
Collecting json
Could not find a version that satisfies the requirement json (from versions: )
However, taking json out of requirements.txt fixes the issue.
techcentaur commented
Yes, that's right. Because you don't need to install json by pip, it is already included in the standard modules. Thank you.