D:\MYPROJ\django\mysite\test2>manage.py runserver
Traceback (most recent call last):
File "D:\MYPROJ\django\mysite\test2\manage.py", line 8, in <module>
from django.core.management import execute_from_command_line
ImportError: No module named django.core.management
D:\MYPROJ\django\mysite\test2>python manage.py runserver
Validating models...
0 errors found
July 19, 2013 - 19:40:10
Django version 1.5.1, using settings 'test2.settings'
Development server is running at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.
При этом раньше все замечательно работало по прямому вызову manage.py
c:\Python33\Lib\site-packages\django\core\management>python
Python 3.3.2 (v3.3.2:d047928ae3f6, May 16 2013, 00:03:43) [MSC v.1600 32 bit (In
tel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import django.core.management as dcm
>>> dcm
<module 'django.core.management' from 'C:\\Python33\\lib\\site-packages\\django\
\core\\management\\__init__.py'>
>>> dcm.execute_from_command_line
<function execute_from_command_line at 0x00D69810>
>>> import sys
>>> sys.path
['', 'C:\\WINDOWS\\system32\\python33.zip', 'C:\\Python33\\DLLs', 'C:\\Python33\
\lib', 'C:\\Python33', 'C:\\Python33\\lib\\site-packages']
ЧЯДНТ?