[Piglit] building piglit on Ubuntu 13.10

Brian Paul brianp at vmware.com
Tue Mar 4 09:52:01 PST 2014


On 02/27/2014 08:04 AM, Brian Paul wrote:
> Has anyone else here build piglit on Ubuntu 13.10?  Starting with a
> basically fresh installation, I'm trying to install python-numpy:
>
> """
> $ sudo apt-get install python-numpy
> Reading package lists... Done
> Building dependency tree
> Reading state information... Done
> Some packages could not be installed. This may mean that you have
> requested an impossible situation or if you are using the unstable
> distribution that some required packages have not yet been created
> or been moved out of Incoming.
> The following information may help to resolve the situation:
>
> The following packages have unmet dependencies:
>   python-numpy : Depends: liblapack3 but it is not going to be installed or
>                           liblapack.so.3 or
>                           libatlas3-base but it is not going to be
> installed
> E: Unable to correct problems, you have held broken packages.
> """
>
> So I tried to install liblapack3 but that depends on libgfortran3 and
> that depends on a version of gcc-4.8-base that conflicts with what's
> already installed.  Dependency hell.
>
> I also tried the "pip install numpy" approach and that leads to
> dependency hell also.
>
> Any tips?

In case anyone else cares, here's what I did to get things working:

apt-get download libgfortran3
apt-get download liblapack3
apt-get download python-numpy
sudo dpkg --force-depends -i libgfortran3_4.8.1-10ubuntu8_amd64.deb
sudo dpkg -i liblapack3_3.4.2+dfsg-2_amd64.deb
sudo dpkg -i python-numpy_1.7.1-1ubuntu1_amd64.deb

-Brian



More information about the Piglit mailing list