Hi Timur,

If you are using this to test / develop on your local machine, you should
not need XAMPP. Django comes with its own testing development server, so
you should not need Apache if you are using this to test / develop locally.

The way I have done this on Windows is just install the python binaries ..
are you sure your project requires 2.6 and will not work on 2.7? I would
recommend going with 2.7, but you should find 2.6 binaries as well. Install
them on your machine. Then install python-setuptools. Once you have that,
you can 'easy_install pip' on the cmd shell . Then, you can 'pip install
django==1.3' and pip install whatever other dependencies you need for your
project. If you feel like doing things the right way, read about virtualenv
and install virtualenv and install all this inside a virtualenv. You may
need to install some of the packages that you need via the binaries / exe
files available, for eg., the python-mysql connector. Just google for these
things and you should find install instructions.

Once you have your dependencies setup, you should just be able to cd into
the code folder and do 'python manage.py runserver' and have your local
development server running at http://localhost:8000 or so.

Is there a particular reason you need WSGI + Apache for your local
development setup? I reckon this maybe a bit complicated on Windows, but
again, that's possibly because I've never needed to do that :). If you're
just using it for development / testing though, I'd recommend just using
the django dev-server.

I have found python / django compatibility with windows to be quite good,
and if your project doesn't have any extreme requirements in terms of
dependencies, you should be fine pip installing most dependencies, and for
ones that don't pip install, you should find .exe installers with a quick
google.

Hope that helps,
Sanjay


On Wed, Jun 26, 2013 at 9:58 PM, Timur Kartaev <kartaevti...@gmail.com>wrote:

> Yes, I am trying to use django on local machine and want to use MySQL. If
> you have any other recommendation what I can install instead of XAMPP
> please write.
> среда, 26 июня 2013 г., 23:45:43 UTC+7 пользователь Charly Román написал:
>>
>> 2013/6/26 Hélio Miranda <heli...@gmail.com>:
>> > what is your doubt yourself?
>> > Why not use the most current versions?
>> >
>> > For example django 1.5.1 python 2.7?
>> >
>>
>> And why XAMPP? Are you trying to use django on local machine?
>>
>  --
> 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.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to