On Tue, Oct 9, 2012 at 4:39 PM, Lewis Satini <[email protected]> wrote: > Hello, > I am sorry for misplace script and package. I am new to Django. > so everytime when I need to install Django packages. I need to do it through > command shell? is there any other way without going through command shell? > > Thanks >
As I said, no not really. Certain python packages require compilation with a C compiler (python-mysql, python imaging library, others), some are just pure python, and others can do whatever the heck they want before installing. With the right setup, you could 'install' pure python packages simply by creating the right folders, and uploading the files in the right place, and having your web server notice when this happens and restart your django application. I wouldn't recommend this, it would be difficult to setup, and you always run the risk of a package not being installed correctly. Just install them as they are supposed to be installed. 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.

