I'm new to programming and I'm trying to setup Django with python, PostgreSQL and virtualenv. My problem is (at this point) installing Django in my virtualenv. This i what I've done:
virtualenv --no-site-packages my-env
I took help from this video: https://www.youtube.com/watch?v=oT1A1KKf0SI. Now here is the first difference: I don't have a bin-folder. However, I have a Scripts-folder but I hope that's fine(?). After this I wrote this:
source my-env/Scripts/activate
Which worked fine. Then i typed:
easy_install Django
And Django was installed successfully (it said). Well, here is the problem. In the video it says that I should have a django-admin.py-file in the bin-directory. However, I've searched through ALL direcrories (Include, Lib, Scripts) and it doesn't exist. And without it I can't create any projects, right?
So what have I done wrong here? :S
EDIT: this is the code from my cygwin64 terminal.
Nina@Ninas-Zenbook ~
$ cd /cygdrive/c/users/nina/documents/virtualenvs
Nina@Ninas-Zenbook /cygdrive/c/users/nina/documents/virtualenvs
$ virtualenv --no-site-packages nina-django3
Using base prefix 'C:\\Python33'
New python executable in nina-django3\Scripts\python.exe
Installing setuptools, pip...done.
Nina@Ninas-Zenbook /cygdrive/c/users/nina/documents/virtualenvs
$ ls
nina-django3
Nina@Ninas-Zenbook /cygdrive/c/users/nina/documents/virtualenvs
$ cd nina-django3
Nina@Ninas-Zenbook /cygdrive/c/users/nina/documents/virtualenvs/nina-django3
$ source bin/activate
-bash: bin/activate: No such file or directory
Nina@Ninas-Zenbook /cygdrive/c/users/nina/documents/virtualenvs/nina-django3
$ source scripts/activate
(nina-django3)
Nina@Ninas-Zenbook /cygdrive/c/users/nina/documents/virtualenvs/nina-django3
$ pip install django
Requirement already satisfied (use --upgrade to upgrade): django in c:\python33\lib\site-packages
Cleaning up...
(nina-django3)
Nina@Ninas-Zenbook /cygdrive/c/users/nina/documents/virtualenvs/nina-django3
$ which django-admin.py
/cygdrive/c/Python33/Scripts/django-admin.py