Python Forum
Django-admin.exe - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Django-admin.exe (/thread-8091.html)



Django-admin.exe - HenryJ - Feb-06-2018

Hi guys,

I am using Win10 OS. I installed Django framework using cmd. After installation completed, I got the "Django-admin" in the folder python\Scripts, which is expected. If I want to create Django project, I can use this "Django-admin.exe" from the cmd.

But I am a bit confused why "Django-admin" will appear in the python3.0\Scripts folder automatically once I finished installing Django framework? Is "Django-admin" a tool like "pip" or something?

Thanks in advance!

BR,
Henry

After researching, I think when I install Django framework, I installed it on my local folder, but not in the virtual environment, that's why the Django-amin appear there...


RE: Django-admin.exe - nilamo - Mar-07-2018

Where else would it go? The Python/Scripts folder is on your Path, so that's why things installed via pip end up there... so you can use them.