Are there any all in one packages like XAMPP for Django?

前端 未结 3 1195
死守一世寂寞
死守一世寂寞 2021-01-05 09:45

Like with XAMPP you can just install it and start developing because PHP/MySQL/Apache, etc. are all in there.

Is there anything like this for Django?

P.S. I

3条回答
  •  再見小時候
    2021-01-05 10:21

    The closest thing I've seen is Bitnami's DjangoStack. There is arguably little need for a comparable XAMPP stack to get started with Django development, as the only thing you need to get started with Django is Python 2.x. Most linux distros and OSX include Python 2.x. The easiest way to install Django is to use easy_install (preferably from distribute) or pip. It can't get much easier if you are happy using the built-in development server and SQLite:

    $ easy_install django

    If you don't have easy_install or pip available, or you don't know how to use them from a terminal...learn. You can use pip or easy_install to automatically install an incredible amount of packages/apps for Python OR Django. Don't miss out on that! I prefer pip for a number of reasons, which you can learn about better from their documentation.

    This is probably all you need for local development. Well virtualenv too, but I won't get into that.

    I have also seen InstantDjango which tries to be a one-click installer for Windows. Although Bitnami's DjangoStack has a native-installer for Windows, I'd imagine you'd be better off using a VM (Bitnami offers a VM image you can use and there is also another Django appliance available from Turnkey Linux). Or (even better) you could easily create your own Linux VM (with the distro of your choice, tools of your choice, etc).

提交回复
热议问题