Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing Django with pip, django-admin not found

I installed python using: brew install python and then eventually pip install Django. However when I try to run django-admin.py startproject test I just get a file not found. What did I forget?

like image 256
Parris Avatar asked Dec 11 '22 21:12

Parris


1 Answers

Here's a gist to install django within a virtualenv and to create a project in a single step.

Note: You can use it for setting up your development environment. For production, check out this post.

like image 94
Pramod Avatar answered Dec 31 '22 12:12

Pramod