I am trying to use fbconsole.
The website say
pip install fbconsole
But I dont have pip, so I use easy_install fbconsole and fbconsole is installed.
I check Python directory and there is fbconsole-0.3-py2.7.egg file.
I try to import fbconsole, but the error is
Internal Server Error
import_string() failed for 'myapp.views.index'. Possible reasons are: - missing __init__.py in a package; - package or module path not included in sys.path; - duplicated package or module name taking precedence in sys.path; - missing module, class, function or variable; Debugged import: - 'myapp' found in 'D:\\PythonProj\\LLL\\myapp\\__init__.pyc'. - 'myapp.views' not found. Original exception: ImportError: No module named fbconsole
UPDATE 1: My Project structure is
which is quite different with your explanation because I am using KAY framework.
I follow your explanation but still fail to import the package.