ImportError: cannot import name 'url_encode' from 'werkzeug'
Setting werkzeug==0.16.1 in your requirements file fixes it. The issue is with the 1.0.0 version
try to import this from werkzeug.urls
guess the error is related to the new version of werkzeug. in new werkzeug version there is no "url_encode'. so try to install an older version of werkzeug like this : "pip install werkzeug==0.16.0" mine fixed with this solution