[prev in list] [next in list] [prev in thread] [next in thread] 

List:       pykde
Subject:    Re: [PyQt] Missing libQt5Xml when running pylupdate
From:       Denis Rouzaud <denis.rouzaud () gmail ! com>
Date:       2019-12-31 7:09:37
Message-ID: CAMtsY+aSF802x+JgaCPVDUgpar22B_vQ1YU-5-h9-k-i8x1aLQ () mail ! gmail ! com
[Download RAW message or body]

[Attachment #2 (multipart/alternative)]


Hi again Phil,

I have been posting on stack overflow [0], and thanks to a reply, I can
give more precise input:

If you run ldd /usr/local/lib/python3.7/site-packages/PyQt5/
pylupdate.abi3.so, you see that it is badly linked to the system libraries:

Step 8/9 : RUN ldd /usr/local/lib/python3.7/site-packages/PyQt5/
pylupdate.abi3.so

 ---> Running in 28ca0678edc2

/usr/local/lib/python3.7/site-packages/PyQt5/pylupdate.abi3.so:
/usr/lib/x86_64-linux-gnu/libQt5Core.so.5: version `Qt_5.14' not found
(required by /usr/local/lib/python3.7/site-packages/PyQt5/pylupdate.abi3.so)

linux-vdso.so.1 (0x00007ffe8b3fa000)

libQt5Xml.so.5 => /usr/lib/x86_64-linux-gnu/libQt5Xml.so.5
(0x00007f2bc9a3a000)

libQt5Core.so.5 => /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
(0x00007f2bc953f000)

libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0
(0x00007f2bc951e000)

libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6
(0x00007f2bc939a000)

libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f2bc9217000)

libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007f2bc91fd000)

libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f2bc903a000)

libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007f2bc8e1c000)

libicui18n.so.63 => /usr/lib/x86_64-linux-gnu/libicui18n.so.63
(0x00007f2bc8b41000)

libicuuc.so.63 => /usr/lib/x86_64-linux-gnu/libicuuc.so.63
(0x00007f2bc8972000)

libpcre2-16.so.0 => /usr/lib/x86_64-linux-gnu/libpcre2-16.so.0
(0x00007f2bc88f7000)

libdouble-conversion.so.1 =>
/usr/lib/x86_64-linux-gnu/libdouble-conversion.so.1 (0x00007f2bc88e0000)

libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f2bc88d9000)

libglib-2.0.so.0 => /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0
(0x00007f2bc87ba000)

/lib64/ld-linux-x86-64.so.2 (0x00007f2bc9ce7000)

libicudata.so.63 => /usr/lib/x86_64-linux-gnu/libicudata.so.63
(0x00007f2bc6dca000)

libpcre.so.3 => /lib/x86_64-linux-gnu/libpcre.so.3 (0x00007f2bc6d56000)

For comparison,  while if you ldd
/usr/local/lib/python3.7/site-packages/PyQt5/QtCore.abi3.so
<http://qtcore.abi3.so/>, it is correctly pointing to the libraries in
site-packages.

Does it help to fix this issue?

Cheers,
Denis

[0] https://stackoverflow.com/q/59487249/1548052

Le lun. 30 déc. 2019 à 13:20, Denis Rouzaud <denis.rouzaud@gmail.com> a
écrit :

> Hi Phil,
>
> Have you tried it with Docker?
>
> I mean it's done on clean installation, and it's not working as expected.
> I guess you don't have any issue since you have the system lib installed
> and not only using the pip package.
>
> Cheers,
> Denis
>
> Le lun. 30 déc. 2019 à 13:13, Phil Thompson <phil@riverbankcomputing.com>
> a écrit :
>
>> On 30/12/2019 10:05, Denis Rouzaud wrote:
>> > Adding RUN apt update && apt install -y libqt5xml5 fixes the issue.
>> > But this is not an acceptable solution, since the pip package should
>> > work
>> > on its own.
>> >
>> > Any idea?
>>
>> It's obviously not finding the library bundled in the wheel. As I said,
>> I can't reproduce it and nobody else has reported a problem.
>>
>> Phil
>>
>>
>> > Le dim. 29 déc. 2019 à 14:44, Denis Rouzaud <denis.rouzaud@gmail.com> a
>> > écrit :
>> >
>> >> Hi Phil,
>> >>
>> >> Here is a minimal example with a docker file
>> >>
>> >> FROM python:3.7
>> >> RUN pip install PyQt5
>> >> RUN echo $(ls
>> >> /usr/local/lib/python3.7/site-packages/PyQt5/Qt/lib/libQt5Xml.so.5)
>> >> RUN ldd
>> >> /usr/local/lib/python3.7/site-packages/PyQt5/Qt/lib/libQt5Xml.so.5
>> >> RUN python -c "from PyQt5.pylupdate_main import main"
>> >>
>> >>
>> >> Le dim. 29 déc. 2019 à 11:51, Phil Thompson
>> >> <phil@riverbankcomputing.com>
>> >> a écrit :
>> >>
>> >>> I can't reproduce this.
>> >>>
>> >>> Phil
>> >>>
>> >>>
>> >>> On 26/12/2019 10:37, Denis Rouzaud wrote:
>> >>> > Apprently, libQt5Xml.so.5 is well included in the wheel.
>> >>> > The issue is that it is not found during runtime.
>> >>> > I could fix this by
>> >>> > doing:
>> >>> >
>> >>>
>> LD_LIBRARY_PATH=/usr/local/lib/python3.7/site-packages/PyQt5/Qt/lib/:$LD_LIBRARY_PATH
>> >>> > python
>> >>> > -c "from PyQt5.pylupdate_main import main"
>> >>> >
>> >>> > What is the correct way to solve this?
>> >>> >
>> >>> > Cheers,
>> >>> > Denis
>> >>> >
>> >>> > Le sam. 21 déc. 2019 à 23:12, Denis Rouzaud <
>> denis.rouzaud@gmail.com> a
>> >>> > écrit :
>> >>> >
>> >>> >> I am running pylupdate on Travis by installing PyQt5 from pip.
>> >>> >> Since recently, I am getting this error.
>> >>> >> Any idea?
>> >>> >> Cheers,
>> >>> >> Denis
>> >>> >>
>> >>> >>   File "/home/travis/virtualenv/python3.7.1/bin/pylupdate5", line
>> 6,
>> >>> >> in <module>
>> >>> >> 263    from PyQt5.pylupdate_main import main
>> >>> >> 264  File
>> >>> >>
>> >>>
>> "/home/travis/virtualenv/python3.7.1/lib/python3.7/site-packages/PyQt5/pylupdate_main.py",
>> >>>
>> >>> >> line 24, in <module>
>> >>> >> 265    from .pylupdate import *
>> >>> >> 266ImportError: libQt5Xml.so.5: cannot open shared object file: No
>> >>> >> such file or directory
>> >>> >> 267
>> >>> >> 268
>> >>> >>
>> >>> >> $
>> >>> >>
>> >>> >>
>> >>> >>
>> >>> >
>> >>> > _______________________________________________
>> >>> > PyQt mailing list    PyQt@riverbankcomputing.com
>> >>> > https://www.riverbankcomputing.com/mailman/listinfo/pyqt
>> >>>
>> >>>
>>
>>

[Attachment #5 (text/html)]

<div dir="ltr">Hi again Phil,<div><br></div><div>I have been posting on stack \
overflow [0], and thanks to a reply, I can give more precise \
input:</div><div><br></div><div>If you run  ldd \
/usr/local/lib/python3.7/site-packages/PyQt5/<a href="http://pylupdate.abi3.so/" \
target="_blank">pylupdate.abi3.so</a>, you see that it is badly linked to the system \
libraries:</div><div><div><br></div></div><div>





<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-as \
ian:normal;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(0,0,0)"><span \
class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">Step 8/9 : RUN \
ldd /usr/local/lib/python3.7/site-packages/PyQt5/<a \
href="http://pylupdate.abi3.so">pylupdate.abi3.so</a></span></p> <p class="gmail-p1" \
style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stre \
tch:normal;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(0,0,0)"><span \
class="gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span \
class="gmail-Apple-converted-space">  </span>---&gt; Running in \
28ca0678edc2</span></p> <p class="gmail-p1" \
style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stre \
tch:normal;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(0,0,0)"><span \
class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">/usr/local/lib/python3.7/site-packages/PyQt5/<a \
href="http://pylupdate.abi3.so">pylupdate.abi3.so</a>: \
/usr/lib/x86_64-linux-gnu/libQt5Core.so.5: version `Qt_5.14&#39; not found (required \
by /usr/local/lib/python3.7/site-packages/PyQt5/<a \
href="http://pylupdate.abi3.so">pylupdate.abi3.so</a>)</span></p> <p class="gmail-p1" \
style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stre \
tch:normal;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(0,0,0)"><span \
class="gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span \
class="gmail-Apple-tab-span" style="white-space:pre">	</span>linux-vdso.so.1 \
(0x00007ffe8b3fa000)</span></p> <p class="gmail-p1" \
style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stre \
tch:normal;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(0,0,0)"><span \
class="gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span \
class="gmail-Apple-tab-span" style="white-space:pre">	</span>libQt5Xml.so.5 =&gt; \
/usr/lib/x86_64-linux-gnu/libQt5Xml.so.5 (0x00007f2bc9a3a000)</span></p> <p \
class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian \
:normal;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(0,0,0)"><span \
class="gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span \
class="gmail-Apple-tab-span" style="white-space:pre">	</span>libQt5Core.so.5 =&gt; \
/usr/lib/x86_64-linux-gnu/libQt5Core.so.5 (0x00007f2bc953f000)</span></p> <p \
class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian \
:normal;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(0,0,0)"><span \
class="gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span \
class="gmail-Apple-tab-span" style="white-space:pre">	</span>libpthread.so.0 =&gt; \
/lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f2bc951e000)</span></p> <p \
class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian \
:normal;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(0,0,0)"><span \
class="gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span \
class="gmail-Apple-tab-span" style="white-space:pre">	</span>libstdc++.so.6 =&gt; \
/usr/lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007f2bc939a000)</span></p> <p \
class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian \
:normal;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(0,0,0)"><span \
class="gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span \
class="gmail-Apple-tab-span" style="white-space:pre">	</span>libm.so.6 =&gt; \
/lib/x86_64-linux-gnu/libm.so.6 (0x00007f2bc9217000)</span></p> <p class="gmail-p1" \
style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stre \
tch:normal;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(0,0,0)"><span \
class="gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span \
class="gmail-Apple-tab-span" style="white-space:pre">	</span>libgcc_s.so.1 =&gt; \
/lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007f2bc91fd000)</span></p> <p \
class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian \
:normal;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(0,0,0)"><span \
class="gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span \
class="gmail-Apple-tab-span" style="white-space:pre">	</span>libc.so.6 =&gt; \
/lib/x86_64-linux-gnu/libc.so.6 (0x00007f2bc903a000)</span></p> <p class="gmail-p1" \
style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stre \
tch:normal;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(0,0,0)"><span \
class="gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span \
class="gmail-Apple-tab-span" style="white-space:pre">	</span>libz.so.1 =&gt; \
/lib/x86_64-linux-gnu/libz.so.1 (0x00007f2bc8e1c000)</span></p> <p class="gmail-p1" \
style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stre \
tch:normal;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(0,0,0)"><span \
class="gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span \
class="gmail-Apple-tab-span" style="white-space:pre">	</span>libicui18n.so.63 =&gt; \
/usr/lib/x86_64-linux-gnu/libicui18n.so.63 (0x00007f2bc8b41000)</span></p> <p \
class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian \
:normal;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(0,0,0)"><span \
class="gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span \
class="gmail-Apple-tab-span" style="white-space:pre">	</span>libicuuc.so.63 =&gt; \
/usr/lib/x86_64-linux-gnu/libicuuc.so.63 (0x00007f2bc8972000)</span></p> <p \
class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian \
:normal;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(0,0,0)"><span \
class="gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span \
class="gmail-Apple-tab-span" style="white-space:pre">	</span>libpcre2-16.so.0 =&gt; \
/usr/lib/x86_64-linux-gnu/libpcre2-16.so.0 (0x00007f2bc88f7000)</span></p> <p \
class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian \
:normal;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(0,0,0)"><span \
class="gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span \
class="gmail-Apple-tab-span" \
style="white-space:pre">	</span>libdouble-conversion.so.1 =&gt; \
/usr/lib/x86_64-linux-gnu/libdouble-conversion.so.1 (0x00007f2bc88e0000)</span></p> \
<p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-as \
ian:normal;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(0,0,0)"><span \
class="gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span \
class="gmail-Apple-tab-span" style="white-space:pre">	</span>libdl.so.2 =&gt; \
/lib/x86_64-linux-gnu/libdl.so.2 (0x00007f2bc88d9000)</span></p> <p class="gmail-p1" \
style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stre \
tch:normal;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(0,0,0)"><span \
class="gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span \
class="gmail-Apple-tab-span" style="white-space:pre">	</span>libglib-2.0.so.0 =&gt; \
/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0 (0x00007f2bc87ba000)</span></p> <p \
class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian \
:normal;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(0,0,0)"><span \
class="gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span \
class="gmail-Apple-tab-span" \
style="white-space:pre">	</span>/lib64/ld-linux-x86-64.so.2 \
(0x00007f2bc9ce7000)</span></p> <p class="gmail-p1" \
style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stre \
tch:normal;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(0,0,0)"><span \
class="gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span \
class="gmail-Apple-tab-span" style="white-space:pre">	</span>libicudata.so.63 =&gt; \
/usr/lib/x86_64-linux-gnu/libicudata.so.63 (0x00007f2bc6dca000)</span></p> <p \
class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian \
:normal;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(0,0,0)"><span \
class="gmail-s1" style="font-variant-ligatures:no-common-ligatures"><span \
class="gmail-Apple-tab-span" style="white-space:pre">	</span>libpcre.so.3 =&gt; \
/lib/x86_64-linux-gnu/libpcre.so.3 \
(0x00007f2bc6d56000)</span></p></div><div><br></div><div>For comparison,   while if \
you ldd /usr/local/lib/python3.7/site-packages/PyQt5/<a href="http://qtcore.abi3.so/" \
target="_blank">QtCore.abi3.so</a>, it is correctly pointing to the libraries in \
site-packages.</div><div><br></div><div>Does it help to fix this  \
issue?</div><div><br></div><div>Cheers,</div><div>Denis</div><div><br></div><div>[0]  \
<a href="https://stackoverflow.com/q/59487249/1548052" \
target="_blank">https://stackoverflow.com/q/59487249/1548052</a></div></div><br><div \
class="gmail_quote"><div dir="ltr" class="gmail_attr">Le  lun. 30 déc. 2019 à  \
13:20, Denis Rouzaud &lt;<a \
href="mailto:denis.rouzaud@gmail.com">denis.rouzaud@gmail.com</a>&gt; a écrit  \
:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px \
0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Hi \
Phil,<div><br></div><div>Have you tried it with Docker?</div><div><br></div><div>I \
mean it&#39;s done on clean installation, and it&#39;s not working as \
expected.</div><div>I guess you don&#39;t have any issue since you have the system \
lib installed and not only using the pip \
package.</div><div><br></div><div>Cheers,</div><div>Denis</div></div><br><div \
class="gmail_quote"><div dir="ltr" class="gmail_attr">Le  lun. 30 déc. 2019 à  \
13:13, Phil Thompson &lt;<a href="mailto:phil@riverbankcomputing.com" \
target="_blank">phil@riverbankcomputing.com</a>&gt; a écrit  :<br></div><blockquote \
class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid \
rgb(204,204,204);padding-left:1ex">On 30/12/2019 10:05, Denis Rouzaud wrote:<br> &gt; \
Adding RUN apt update &amp;&amp; apt install -y libqt5xml5 fixes the issue.<br> &gt; \
But this is not an acceptable solution, since the pip package should <br> &gt; \
work<br> &gt; on its own.<br>
&gt; <br>
&gt; Any idea?<br>
<br>
It&#39;s obviously not finding the library bundled in the wheel. As I said, <br>
I can&#39;t reproduce it and nobody else has reported a problem.<br>
<br>
Phil<br>
<br>
<br>
&gt; Le dim. 29 déc. 2019 à 14:44, Denis Rouzaud &lt;<a \
href="mailto:denis.rouzaud@gmail.com" target="_blank">denis.rouzaud@gmail.com</a>&gt; \
a<br> &gt; écrit :<br>
&gt; <br>
&gt;&gt; Hi Phil,<br>
&gt;&gt; <br>
&gt;&gt; Here is a minimal example with a docker file<br>
&gt;&gt; <br>
&gt;&gt; FROM python:3.7<br>
&gt;&gt; RUN pip install PyQt5<br>
&gt;&gt; RUN echo $(ls <br>
&gt;&gt; /usr/local/lib/python3.7/site-packages/PyQt5/Qt/lib/libQt5Xml.so.5)<br>
&gt;&gt; RUN ldd <br>
&gt;&gt; /usr/local/lib/python3.7/site-packages/PyQt5/Qt/lib/libQt5Xml.so.5<br>
&gt;&gt; RUN python -c &quot;from PyQt5.pylupdate_main import main&quot;<br>
&gt;&gt; <br>
&gt;&gt; <br>
&gt;&gt; Le dim. 29 déc. 2019 à 11:51, Phil Thompson <br>
&gt;&gt; &lt;<a href="mailto:phil@riverbankcomputing.com" \
target="_blank">phil@riverbankcomputing.com</a>&gt;<br> &gt;&gt; a écrit :<br>
&gt;&gt; <br>
&gt;&gt;&gt; I can&#39;t reproduce this.<br>
&gt;&gt;&gt; <br>
&gt;&gt;&gt; Phil<br>
&gt;&gt;&gt; <br>
&gt;&gt;&gt; <br>
&gt;&gt;&gt; On 26/12/2019 10:37, Denis Rouzaud wrote:<br>
&gt;&gt;&gt; &gt; Apprently, libQt5Xml.so.5 is well included in the wheel.<br>
&gt;&gt;&gt; &gt; The issue is that it is not found during runtime.<br>
&gt;&gt;&gt; &gt; I could fix this by<br>
&gt;&gt;&gt; &gt; doing:<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; LD_LIBRARY_PATH=/usr/local/lib/python3.7/site-packages/PyQt5/Qt/lib/:$LD_LIBRARY_PATH<br>
 &gt;&gt;&gt; &gt; python<br>
&gt;&gt;&gt; &gt; -c &quot;from PyQt5.pylupdate_main import main&quot;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; What is the correct way to solve this?<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; Cheers,<br>
&gt;&gt;&gt; &gt; Denis<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; Le sam. 21 déc. 2019 à 23:12, Denis Rouzaud &lt;<a \
href="mailto:denis.rouzaud@gmail.com" target="_blank">denis.rouzaud@gmail.com</a>&gt; \
a<br> &gt;&gt;&gt; &gt; écrit :<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;&gt; I am running pylupdate on Travis by installing PyQt5 from \
pip.<br> &gt;&gt;&gt; &gt;&gt; Since recently, I am getting this error.<br>
&gt;&gt;&gt; &gt;&gt; Any idea?<br>
&gt;&gt;&gt; &gt;&gt; Cheers,<br>
&gt;&gt;&gt; &gt;&gt; Denis<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;     File \
&quot;/home/travis/virtualenv/python3.7.1/bin/pylupdate5&quot;, line 6,<br> \
&gt;&gt;&gt; &gt;&gt; in &lt;module&gt;<br> &gt;&gt;&gt; &gt;&gt; 263      from \
PyQt5.pylupdate_main import main<br> &gt;&gt;&gt; &gt;&gt; 264   File<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &quot;/home/travis/virtualenv/python3.7.1/lib/python3.7/site-packages/PyQt5/pylupdate_main.py&quot;,<br>
 &gt;&gt;&gt; <br>
&gt;&gt;&gt; &gt;&gt; line 24, in &lt;module&gt;<br>
&gt;&gt;&gt; &gt;&gt; 265      from .pylupdate import *<br>
&gt;&gt;&gt; &gt;&gt; 266ImportError: libQt5Xml.so.5: cannot open shared object file: \
No<br> &gt;&gt;&gt; &gt;&gt; such file or directory<br>
&gt;&gt;&gt; &gt;&gt; 267<br>
&gt;&gt;&gt; &gt;&gt; 268<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt; $<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; _______________________________________________<br>
&gt;&gt;&gt; &gt; PyQt mailing list      <a href="mailto:PyQt@riverbankcomputing.com" \
target="_blank">PyQt@riverbankcomputing.com</a><br> &gt;&gt;&gt; &gt; <a \
href="https://www.riverbankcomputing.com/mailman/listinfo/pyqt" rel="noreferrer" \
target="_blank">https://www.riverbankcomputing.com/mailman/listinfo/pyqt</a><br> \
&gt;&gt;&gt; <br> &gt;&gt;&gt; <br>
<br>
</blockquote></div>
</blockquote></div>


[Attachment #6 (text/plain)]

_______________________________________________
PyQt mailing list    PyQt@riverbankcomputing.com
https://www.riverbankcomputing.com/mailman/listinfo/pyqt


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic