[PySide] PySide Digest, Vol 79, Issue 2

Miguel Alejandro Fernández fernandez.m.alejandro at gmail.com
Wed Aug 7 15:48:13 CEST 2019


Hello  anybody,   thanks "Cristián Maureira-Fredes" and "Alexandru Croitor",
before I try with Qt5.12 but print the same msg,
I will take account your suggestions about build PySide2 from sources..

El mié., 7 ago. 2019 7:00, <pyside-request at qt-project.org> escribió:

> Send PySide mailing list submissions to
>         pyside at qt-project.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>         https://lists.qt-project.org/listinfo/pyside
> or, via email, send a message with subject or body 'help' to
>         pyside-request at qt-project.org
>
> You can reach the person managing the list at
>         pyside-owner at qt-project.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of PySide digest..."
>
>
> Today's Topics:
>
>    1. Re: samplebindings with Ming32 (Cristián Maureira-Fredes)
>    2. Re: samplebindings with Ming32 (Alexandru Croitor)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Wed, 7 Aug 2019 09:21:20 +0000
> From: Cristián Maureira-Fredes  <Cristian.Maureira-Fredes at qt.io>
> To: "pyside at qt-project.org" <pyside at qt-project.org>
> Subject: Re: [PySide] samplebindings with Ming32
> Message-ID: <9405486d-0c8f-2d79-8b3c-473c96c4295e at qt.io>
> Content-Type: text/plain; charset="utf-8"
>
>
>
> On 8/6/19 9:52 PM, Miguel Alejandro Fernández wrote:
> > Hello, I have installed
> > *PySide2-5.13.0-5.13.0-cp35.cp36.cp37-none-win_amd64.whl* on my *Windows
> > 10 64 bits*, the python host is *python-3.7.3-amd64*.
> > *cmake-3.14.0-rc4-win64-x64*. *Qt5.11.1 ( mingw53_32 )*. *Mingw53_32*
> > from the Qt5 install dir.
> >
> >
> > img.png
> >
> >
> > when I build, the next mesage was printed:
> >
> >
> > img2.png
> > img3.png
> >
> >
> >
> > Anybody can help me?
>
> Hello Miguel,
>
> I don't know if this will solve your issue, but please refer to the FAQ
> https://wiki.qt.io/Qt_for_Python#Frequently_Asked_Questions particularly:
>
> "Take into account that if you want to generate bindings for a Qt/C++
> project, the linking to the Qt shared libraries will be missing, and you
> will need to do this by hand. We recommend to build PySide2 from scratch
> to have everything properly linked."
>
>
> A couple of other things:
> - you need to have the same Qt and PySide2 version,
> - PySide2 was officially released with Qt 5.12, so any previous version
> of it (5.11.x) will not be compatible with the latest, so you will have
> better luck updating the Qt version to the latest, instead of trying to
> get PySide2 5.11.1
>
> Once you consider all these points,
> please let us know if the problem persist.
>
> Cheers
>
> --
> Dr. Cristian Maureira-Fredes
> Software Engineer
>
> The Qt Company GmbH
> Erich-Thilo-Str. 10
> D-12489 Berlin
>
> Geschäftsführer: Mika Pälsi,
> Juha Varelius, Mika Harjuaho
> Sitz der Gesellschaft: Berlin,
> Registergericht: Amtsgericht
> Charlottenburg, HRB 144331 B
> --
>
> ------------------------------
>
> Message: 2
> Date: Wed, 7 Aug 2019 09:28:41 +0000
> From: Alexandru Croitor <alexandru.croitor at qt.io>
> To: Cristián Maureira-Fredes  <Cristian.Maureira-Fredes at qt.io>
> Cc: "pyside at qt-project.org" <pyside at qt-project.org>
> Subject: Re: [PySide] samplebindings with Ming32
> Message-ID: <4A4A6403-86E9-415A-BF2E-F5A84E84ECC4 at qt.io>
> Content-Type: text/plain; charset="utf-8"
>
> Hi Miguel,
>
> Note that the binary wheels provided for Windows are built using Microsoft
> Visual Studio C++ Compiler. Any custom bindings you build have to use the
> same compiler.
>
> You are using the MinGW compiler, thus you can't use the provided binary
> wheels. You would have to build PySide2 from sources with the MinGW
> compiler (which I don't think anyone tried yet) and also use Qt binaries
> that were built with the same MinGW version (or again, build them from
> sources).
>
> > On 7. Aug 2019, at 11:21, Cristián Maureira-Fredes <
> Cristian.Maureira-Fredes at qt.io> wrote:
> >
> >
> >
> > On 8/6/19 9:52 PM, Miguel Alejandro Fernández wrote:
> >> Hello, I have installed
> >> *PySide2-5.13.0-5.13.0-cp35.cp36.cp37-none-win_amd64.whl* on my
> *Windows
> >> 10 64 bits*, the python host is *python-3.7.3-amd64*.
> >> *cmake-3.14.0-rc4-win64-x64*. *Qt5.11.1 ( mingw53_32 )*. *Mingw53_32*
> >> from the Qt5 install dir.
> >>
> >>
> >> img.png
> >>
> >>
> >> when I build, the next mesage was printed:
> >>
> >>
> >> img2.png
> >> img3.png
> >>
> >>
> >>
> >> Anybody can help me?
> >
> > Hello Miguel,
> >
> > I don't know if this will solve your issue, but please refer to the FAQ
> > https://wiki.qt.io/Qt_for_Python#Frequently_Asked_Questions
> particularly:
> >
> > "Take into account that if you want to generate bindings for a Qt/C++
> > project, the linking to the Qt shared libraries will be missing, and you
> > will need to do this by hand. We recommend to build PySide2 from scratch
> > to have everything properly linked."
> >
> >
> > A couple of other things:
> > - you need to have the same Qt and PySide2 version,
> > - PySide2 was officially released with Qt 5.12, so any previous version
> > of it (5.11.x) will not be compatible with the latest, so you will have
> > better luck updating the Qt version to the latest, instead of trying to
> > get PySide2 5.11.1
> >
> > Once you consider all these points,
> > please let us know if the problem persist.
> >
> > Cheers
> >
> > --
> > Dr. Cristian Maureira-Fredes
> > Software Engineer
> >
> > The Qt Company GmbH
> > Erich-Thilo-Str. 10
> > D-12489 Berlin
> >
> > Geschäftsführer: Mika Pälsi,
> > Juha Varelius, Mika Harjuaho
> > Sitz der Gesellschaft: Berlin,
> > Registergericht: Amtsgericht
> > Charlottenburg, HRB 144331 B
> > --
> > _______________________________________________
> > PySide mailing list
> > PySide at qt-project.org
> > https://lists.qt-project.org/listinfo/pyside
>
>
> ------------------------------
>
> Subject: Digest Footer
>
> _______________________________________________
> PySide mailing list
> PySide at qt-project.org
> https://lists.qt-project.org/listinfo/pyside
>
>
> ------------------------------
>
> End of PySide Digest, Vol 79, Issue 2
> *************************************
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.qt-project.org/pipermail/pyside/attachments/20190807/051dc160/attachment.html>


More information about the PySide mailing list