Bot does not start "No module named requests"
See original GitHub issueHi, I am running your bot for several months now.
I just updated (via git pull).
When I now try to start the bot I get the error message
pi@retropie:~/poloniexlendingbot $ python lendingbot.py Traceback (most recent call last): File “lendingbot.py”, line 17, in <module> from modules.ExchangeApiFactory import ExchangeApiFactory File “/home/pi/poloniexlendingbot/modules/ExchangeApiFactory.py”, line 6, in <module> from modules.Bitfinex import Bitfinex File “/home/pi/poloniexlendingbot/modules/Bitfinex.py”, line 6, in <module> import requests ImportError: No module named requests`
Can you help me?
Issue Analytics
- State:
- Created 6 years ago
- Comments:18 (7 by maintainers)
Top Results From Across the Web
ModuleNotFoundError: No module named 'requests' on ...
Program run great from PyCharm but displayed ModuleNotFoundError when runnig from command prompt. After running "pip install requests" problem has gone.
Read more >[Fixed] ModuleNotFoundError: No module named 'requests'
The most likely reason is that Python doesn't provide requests in its standard library. You need to install it first!
Read more >Importerror: no module named requests - Lets Fix step by step
Importerror: no module named requests error comes into the picture when the requests module not available or uninstalled.
Read more >Running bot.py and it says no module named 'requests' #13
I follow the steps on hh and when I execute the bot.py and it said no module named 'requests' I run python bot.py...
Read more >No Module named 'requests' - Refinitiv Developer Community
I have run pip install requests in my environment and it is already satisfied. Any ideas on why it would work in one...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Ok i found the solution.
My system is instaling the versions for python3. Have to run pip directly from the python version to install the correct version to python2
sudo python -m pip install hypothesis sudo python -m pip install pandas sudo python -m pip install pytz sudo python -m pip install requests
Thank you @utdrmac for your help!