Re: uwsgi install question

2012-09-05 Thread Trevor Joynson
If there's no apt-get, you're probably on an rpm-based distribution
such as CentOS. you can tell what distro you are on via "lsb_release
-a".

Your webhost should already have libxml2 installed as it's required by
nearly everything web dev, but the header files sound like they aren't
installed (the devel packages).

If you don't have root access, you have two options:

1) (Easiest) Find the matching devel package version for the binary
libxml already installed and extract it to a folder, link against the
header files contained within by specified the include path, most
./configure scripts have such an option, something ala
--with-libxml=/path/to/libxml2

2) (More work without more profit) Download libxml2 and compile it,
specify the include path in the same way as above but you'll also need
to put this path in your LD_LIBRARY_PATH env variable.

Good luck!


)) Trevor Joynson (trevorj)
(( Network Ninja


On Thu, Sep 6, 2012 at 12:01 AM, ecs1749  wrote:
> I know this a Django group but uwsgi is blocking my way to seeing the next
> step of my first Django project.  There doesn't seem to be a uwsgi group
> that I can see.  So, I hope you don't mind.
>
> First step for the uwsgi install procedure:
>
> apt-get install build-essential python-dev libxml2-dev
>
> but there is no "apt-get" with the westhost share hosting and uwsgi fails to
> install without libxml2.  Anybody?
>
> Thanks,
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/django-users/-/jH9gjKWraqsJ.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



uwsgi install question

2012-09-05 Thread ecs1749
I know this a Django group but uwsgi is blocking my way to seeing the next 
step of my first Django project.  There doesn't seem to be a uwsgi group 
that I can see.  So, I hope you don't mind.

First step for the uwsgi install procedure:

apt-get install build-essential python-dev libxml2-dev

but there is no "apt-get" with the westhost share hosting and uwsgi fails to 
install without libxml2.  Anybody?

Thanks,


-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/jH9gjKWraqsJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.