On Tue, Oct 9, 2012 at 4:39 PM, Lewis Satini <
jubile...@gmail.com> 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