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 suchenter image description here
next, entered startproject cmd.

    pythonpath=. python django/bin/django-admin.py startproject --name=app.yaml --template=djangoappengine/conf/project_template myapp .   

but commanderror occurred enter image description here

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

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -