On Fri, 2009-02-13 at 06:48 -0800, cswebb wrote:
> I've attempted to install Django via the rpm created with "setup.py
> bdist_rpm".  RPM is created, however when attempting to install it, I
> get the following dependency error:
> 
> error: Failed dependencies:
>         /usr/local/bin/python is needed by Django-1.0.1_final-1.noarch
> 
> Here's what a long listing shows for /usr/local/bin/python on my
> system:
> 
> ls -l /usr/local/bin/python
> -rwxr-xr-x  2 root root 4428685 Feb  4 15:13 /usr/local/bin/python
> 
> 
> I've even tried to re-build the rpm by editing the spec file to
> directly call python2.6, but I get the same problem, except it
> complains about not being able to find /usr/local/bin/
> python2.6....which is also available. 

If the file is in /usr/local/bin/, then that means you will have
installed it yourself manually, not via an rpm. The rpm pre-condition is
requiring that there is some rpm which provides the
file /usr/local/bin/python2.6, not that the file exists on the system.

So, if you're going to build an rpm and work that way, you have to make
sure all the pre-requisites are also packaged the same way. In that
fashion, dependencies can be tracked appropriately (for example, you
won't be able to remove the rpm providing python2.6 without first
removing the django rpm, since the latter depends on the former).

Regards,
Malcolm



--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to