crowzz
crowzz

Reputation: 112

ImportError No module named requests_oauthlib error

using nohup python to run an .py file.
but face this error

    from requests_oauthlib import OAuth1, OAuth1Session
ImportError: No module named requests_oauthlib

Upvotes: 3

Views: 9191

Answers (1)

Shubhang Gupta
Shubhang Gupta

Reputation: 138

You should try the command pip install requests_oauthlib. It works for me.

Upvotes: 4

Related Questions