简体   繁体   中英

ImportError: No module named httplib2 on Heroku

Here is my import libraries in my python code which i hosted on heroku

import os
from flask import Flask, render_template
import sys, httplib2, json;

Its shows error ImportError: No module named httplib2 ?? Can any tell me why is it happening and if any way to correct it??

Do you have the httplib2 module installed?

Try pip install httplib2

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM