Where is Django admin path?

The django-admin.py script should be on your system path if you installed Django via its setup.py utility. If it’s not on your path, you can find it in site-packages/django/bin within your Python installation . Consider symlinking it from some place on your path, such as /usr/local/bin .

Read more

Manage PY nedir?

manage .py : Django projesini etkinleştirmek için oluşturulmuş bir dosyadır. Genellikle geliştirme sunucusunu başlatmak için kullanılır. Projedeki dosyaların anlamlarını öğrendiğimize göre projeyi başlatabiliriz. Bunun için PyCharm’da run seçeneği ile yada sağ üst köşedeki yeşil ok tuşuyla projeyi başlatırız.

Read more