python - Django App Engine Installation CommandError Issue -
i've been following installation guide on django app engine doc.
had unzip each module , place them in directory such
next, entered startproject cmd.
pythonpath=. python django/bin/django-admin.py startproject --name=app.yaml --template=djangoappengine/conf/project_template myapp .
i tried editing startproject line removing final ".". works new folder named "myapp" path test/myapp/ created. don't think should correct project structure. shouldn't necessary files in root folder of test/ ?
i realised problems lies ds_store file created mac. hence writing code below delete files solve problem.
find . -name '*.ds_store' -type f -delete
Comments
Post a Comment