[Answer]-ImportError: Could not import settings 'wequest.settings' (Is it on sys.path?): No module named wequest.settings

1👍

  1. Delete all .pyc files: find /path/to/project -name '*pyc' -delete

  2. Search for files that still refer to wequest: grep -r wequest /path/to/project

  3. Fix these files B)

👤jpic

Leave a comment