If you are working with windows , let me give you a very simple guide.
Google and download setuptools.exe and install in to your computer.

First install python 2.7 ans set the python path
Then move to this directory C:\Python27\scripts in the windows command .
You should run easy_install pip 
Then also run easy install virtualevn and your virtual env will be install 
in that directory alone.

Then to create you environment you run this command 
virtualenv --no-site-packages [name of your environment]
for example virtualenv --no-site-packages django_test

Then to activate this environment you type this command
[name of your enviroment]\scripts\activate   make sure you do all this in 
that directory abovee

for example
C:\Python27\scripts\django_test\scripts\activate
then your environment will be activated

Then move to this directory cd django_test
you path will become C:\Python27\scripts\django_test.

Then run pip install django [you can specify the version]

then when django is install move to the directory as so
run the dir command you will see the downloaded django

move to the downloaded django as using this command

cd Django-1.4.3 depending on the version of your django
To install the django now in to the system , type 

setup.py install in this directory 
C:\Python27\scripts\django_test\Django-1.4.3. That will depend your 
directory 

django will be install
then move to cd django
C:\Python27\scripts\django_test\Django-1.4.3\django

move to C:\Python27\scripts\django_test\Django-1.4.3\django\bin\

the u will have to create your projects

run this command withtin that sam directory

C:\Python27\scripts\django_test\Django-1.4.3\django\bin\django-admin.py 
startproject [name of your project]


Then you can figure out the rest
Thanks



-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/371195f9-f729-46d0-82a1-65974b844464%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to