2011/2/9 Tomasz Łopusiewicz <[email protected]>:
> Hello,
>
> i am new and i wanted to install django on my local but i have some
> problems with it. I was trying to install django according to:
> http://www.howtoforge.com/installing-django-on-debian-etch-apache2-mod_python
>
> Everything was great but when i call this command in my shell Debian
> 6: "/usr/share/python-support/python-django/django/bin/django-admin.py
> startproject mysite" it respons that there is no such folder in this
> location. When i go to this path a i have in usr/share/python-
> support/:
>
>
> -rw-r--r-- 1 root root   373 01-01 21:55 python-django.private
> -rw-r--r-- 1 root root 69936 01-01 21:55 python-django.public
> ...
> -rw-r--r-- 1 root root 19222 10-07 11:20 python-numpy.public
> -rw-r--r-- 1 root root 46945 2010-01-26  python-opengl.public
> -rw-r--r-- 1 root root   731 2010-01-30  python-openssl.public
> -rw-r--r-- 1 root root  1033 2010-05-16  python-pyasn1.public
>
> python-django.public is a file with:
>
> /usr/share/pyshared/Django-1.2.3.egg-info
> /usr/share/pyshared/django/__init__.py
> /usr/share/pyshared/django/conf/__init__.py...
>
> etc.
>
> I just want to install django in my folder home/web
>
>
> How to do this, thank you for any help, and dont kill me for my bad
> english ;P
>

If you just want to install stuff locally, pip/virtualenv makes it really easy:

apt-get install pip virtualenv
cd ~/web
mkdir myproj
cd myproj
virtualenv environ
source environ/bin/activate
pip install django
python
>>> import django

Google has plenty more info.

Cheers

Tom

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to