importerror cannot import name from pyd file code example

Example 1: python cannot import name

if you encounter this error:

ImportError: Cannot import name whatever

with a python file called "whatever",
then this may be cause by the following issues:
	1. file "whatever" is not in the same folder as the current file.
    	this means that you need to place file "whatever" inside
        the same file that gave you the import error.
    2. library/module "whatever" is not installed.
    	if "whatever" is a third-party library/module,
        then you need to install the library/module.
        This is usually done with "pip install whatever",
        but exceptions do exist that the command is not
        the proper command to install "whatever"
    3. if this file is in another folder, but you don't want to move it.
    	in this case, you should add this at the top of your file:
        	import sys
			sys.path.append('path/to/file/whatever.py')
        replace 'path/to/file' with the proper directory of "whatever.py"
    4. you forgot to create "whatever.py"!
    	well... just remember to do that before importing.

This does not include all of the possibilities. Hope this helped :D

Example 2: ImportError: cannot import name include

#it may be that you are using a diiferent version of django try the following
from django.conf.urls import include

Tags:

Misc Example