In order to create a new project, I'm using this command:
django-admin.py startproject learning_log .
but i am not able to create a new directory containing the required files.
But if i use the command:
django-admin startproject learning_log .
i'm able to get these 4 files:
__init__.py
settings.py
wsgi.py
urls.py
but then also the manage.py file is missing.
Could you tell me the possible problems and the corresponding solution.