RE: Install Django

2017-06-07 Thread Matthew Pava
You need to activate your virtual environment and then run “pip install django.” D:/Project/Pyton/lalala/activate.bat pip install django From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On Behalf Of sadri ashari Sent: Wednesday, June 7, 2017 2:34 AM To: Django users Subj

Re: Install Django

2017-06-07 Thread Александр Христюхин (roboslone)
It has nothing to do with pytz. The issue is that you're trying to install packages into system's python. You shouldn't do it ever. Use virtualenv instead: https://virtualenv.pypa.io/en/stable/ > On 7 Jun 2017, at 10:34, sadri ashari wrote: > > >

Re: Install Django Apps via Admin Interface

2014-09-17 Thread Thomas Güttler
Am 12.09.2014 um 18:23 schrieb Collin Anderson: And you would expect that to happen just through admin? Would you trust your users really to do all that - basically giving full control what users installs to your system without discretion? Installing apps via the admin would be usef

Re: Install Django Apps via Admin Interface

2014-09-12 Thread Andreas Kuhne
I really can't see a usecase for something like this. The only time I want to install new packages to my django system is on my dev server while developing something. I would also want the change to be permanent, therefore writing it in my settings.py file. I often forget to add the package to INST

Re: Install Django Apps via Admin Interface

2014-09-12 Thread Collin Anderson
> > And you would expect that to happen just through admin? Would you trust > your users really to do all > that - basically giving full control what users installs to your system > without discretion? Installing apps via the admin would be useful when the user is the same person as the sys

Re: Install Django Apps via Admin Interface

2014-09-12 Thread Jani Tiainen
Hi, It seems that you're confusing Django to to be something that it isn't. Django is a web application framework. In short meaning that it is set of (Python) libraries that are used to build web applications. Django app is usually reusable piece of code that brings some (usually common) functi

Re: Install Django Apps via Admin Interface

2014-09-12 Thread Thomas Güttler
Am 10.09.2014 um 11:07 schrieb Avraham Serour: you can't, you would need to write something yourself capable of doing this. that's sad. in any case why would you want to do that? Convenience. It would be great if some admin plugin could do this: Connect to pypi and list all available pac

Re: Install Django Apps via Admin Interface

2014-09-10 Thread Avraham Serour
you can't, you would need to write something yourself capable of doing this. in any case why would you want to do that? adding an app to a project may involve not only installing the python package and adding the app to INSTALLED_APPS, but also adding configurations to settings.py, running syncdb/

Re: Install Django debug toolbar - Error Path

2014-05-07 Thread Venkatraman S
On Wed, May 7, 2014 at 10:48 PM, Rafael Santos wrote: > Python Version: 2.7.6 > Django Version: 1.6.4 > > > Traceback: > File "C:\Python27\lib\site-packages\django\core\handlers\base.py" in > get_response > 201. response = middleware_method(request, response) > File "C:\Python27\

Re: install Django locally

2014-01-10 Thread Frank Bieniek
Hi, It sounds you are looking for virtualenvironments, http://www.virtualenv.org/en/latest/ It helps you to put everything related to your project in one environment. https://docs.djangoproject.com/en/dev/topics/install/#installing-an-official-release-with-pip Cheers Frank Am 10.01.2014 13:34,

Re: install django-mingus blog / http://djangoadvent.com/1.2/everything-i-hate-about-mingus/ pls help

2010-07-17 Thread Peter Herndon
Try "pip install ElementTree", your version of python does not include e-tree. Sent from my external cortex. On Jul 17, 2010, at 11:45 AM, justin jools wrote: > Trying to install django-mingus (see bottom, not easy at all!) > When installing * 6 pip install -r stable-requirements.txt > > iro

Re: install django-mingus blog / http://djangoadvent.com/1.2/everything-i-hate-about-mingus/ pls help

2010-07-17 Thread justin jools
Trying to install django-mingus (see bottom, not easy at all!) When installing * 6 pip install -r stable-requirements.txt ironed out 1 error with BeautifulSoup==3.0.8.1 - see bottom (http:// github.com/montylounge/django-mingus/issues/issue/36) now I get markdown error, tried changing markdown2.

Re: Install Django in a Production server!

2010-03-11 Thread Suno Ano
Tiago> I want to keep my dedicated server for my company, where can i Tiago> find a tutorial, the best choices for OS. A combo of Debian/Ubuntu, Cherokee and uWSGI is what I use http://yml-blog.blogspot.com/2009/11/how-to-set-up-cherokee-and-uwsgi.html http://www.cherokee-project.com/doc/cookb

Re: Install Django in a Production server!

2010-03-11 Thread Massimiliano Bertinetti
Eventually, as said by the doc: " The mod_python module for Apachecan be used to deploy Django to a production server, although it has been mostly superseded by the simpler *mod_wsgi deployment option*

Re: Install Django in a Production server!

2010-03-11 Thread Anton Bessonov
Using Django on Apache with mod_python in production - it's a bad idea! wsgi or fcgi is better start point. http://docs.djangoproject.com/en/dev/howto/deployment/ Massimiliano Bertinetti schrieb: If I understand, you want information about installing python/django in a production enviroment (e

Re: Install Django in a Production server!

2010-03-11 Thread Massimiliano Bertinetti
If I understand, you want information about installing python/django in a production enviroment (ex-novo). I recently do this on a Linode Virtual Ubuntu Server and I think you can do the same. Here a tutorial: http://library.linode.com/web-frameworks/django I'm not a Linode man! What you find on

Re: Install django on apache

2009-11-25 Thread Christophe Pettus
On Nov 25, 2009, at 12:39 PM, Nadae Ivar BADIO wrote: > i'm new in django and i trying to run django on my production server > who have debian and apache someone can please help me? It's Centos, not Debian, but this might help: http://thebuild.com/blog/2009/10/16/wordpress-to-djan

Re: install django on a shared host, with fastcgi

2009-01-22 Thread anode
I've managed to successfully install django running fcgi on my shared host, but I've got to warn you, it's not usually an easy path. Took me ages. It's usually much, much easier to use a django-friendly host such as webfaction, but anyway, here a couple of points from a non-expert. 1) Are you ty

Re: install django

2008-10-15 Thread Malcolm Tredinnick
On Thu, 2008-10-16 at 13:32 +0800, robin nanola wrote: > i think you must be the root user to be able to install django.. This isn't correct. > On Thu, Oct 16, 2008 at 1:25 PM, limas <[EMAIL PROTECTED]> > wrote: > > hai, > i want to install django in a local directory w

Re: install django

2008-10-15 Thread Karen Tracey
On Thu, Oct 16, 2008 at 1:32 AM, robin nanola <[EMAIL PROTECTED]> wrote: > i think you must be the root user to be able to install django.. > Well...to put it in site-packages, perhaps yes. But one can easily install django elsewhere. > On Thu, Oct 16, 2008 at 1:25 PM, limas <[EMAIL PROTECTED

Re: install django

2008-10-15 Thread robin nanola
i think you must be the root user to be able to install django.. On Thu, Oct 16, 2008 at 1:25 PM, limas <[EMAIL PROTECTED]> wrote: > > hai, > i want to install django in a local directory without the permission > of root in Mandriva linux. > please help meThe problem i suffered is could n

Re: Install Django

2007-01-25 Thread Ramiro Morales
Victor On 1/25/07, Victor Quiroz <[EMAIL PROTECTED]> wrote: > > Is posible install django from egg file? > Where download this egg file? > No, el egg de Django no funcionaba del todo bien y la ultima versión que incluyó un .egg para ser descargado fué la 0.90, eso lo podés ver aca: http://www.

Re: Install Django

2007-01-25 Thread Jeremy Dunck
On 1/25/07, Victor Quiroz <[EMAIL PROTECTED]> wrote: > > Is posible install django from egg file? > Where download this egg file? > Not directly, but this page explains the options for installing: http://www.djangoproject.com/download/ --~--~-~--~~~---~--~~ You re