Results 1 to 4 of 4

Thread: What are the bare minimum libraries I need to install to use PySide?

  1. #1
    Join Date
    Feb 2012
    Posts
    2
    Qt products
    Qt4
    Platforms
    MacOS X

    Default What are the bare minimum libraries I need to install to use PySide?

    I'm including Qt in a large software project. I thought that if I just built the libraries and not the SDK it would save me from filling up my hard drive with a bunch of unnecessary junk, but when I build the Qt libraries it takes up a ridiculous 12 gigabytes of space, and after doing "make install" the resulting /usr/local/Trolltech folder is only 700 MB. When I do "./configure -help" it doesn't really give me enough information to know what options to set to do a minimal build. I'm the only person on the project who might ever need to use whatever development tools come with Qt; everybody else just needs to be able to get my Python code up and running with PySide on OS X. How should they configure it so they can build it using the least possible time and space?

  2. #2
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: What are the bare minimum libraries I need to install to use PySide?

    Those 12GB come from temporary/object files created during compilation. You can run make clean after the build to get rid of them. The set of libraries required depends on the functionality you need in PySide.
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


  3. #3
    Join Date
    Feb 2012
    Posts
    2
    Qt products
    Qt4
    Platforms
    MacOS X

    Default Re: What are the bare minimum libraries I need to install to use PySide?

    We just need to be able to create all the standard GUI widgets and an OpenGL canvas. What matters the most is that the rest of the team can get it up and running as quickly as possible, but I don't want to just blindly exclude as much from their installations as I think I can get away with and then find out that they are missing some necessary components.

    There's simply no way I can believe that it's necessary to fill up that much space with temporary files. But software development is all about running into situations that are impossible to believe...

  4. #4
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: What are the bare minimum libraries I need to install to use PySide?

    Quote Originally Posted by colonel_panic View Post
    We just need to be able to create all the standard GUI widgets and an OpenGL canvas.
    So you need QtCore, QtGui and QtOpenGl plus image plugins if you want to handle other formats than png.

    There's simply no way I can believe that it's necessary to fill up that much space with temporary files.
    Believe it or not but that's the truth. QtWebKit is the one taking most space. And you're probably building them in both debug and release modes.

    Why don't you just install a binary bundle instead of compiling Qt on your own?
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


Similar Threads

  1. Qt Designer and PySide
    By moabi in forum Newbie
    Replies: 0
    Last Post: 25th August 2011, 08:40
  2. boost python inside pyside
    By strattonbrazil in forum Qt Programming
    Replies: 0
    Last Post: 11th August 2011, 16:54
  3. Pyside needs QT?
    By junichiro in forum Installation and Deployment
    Replies: 0
    Last Post: 30th July 2011, 15:13
  4. Mac OS install qwt libraries
    By d-l-sama@hotmail.com in forum Qwt
    Replies: 0
    Last Post: 30th April 2009, 14:53
  5. Compile and install only the libraries
    By SteM in forum Installation and Deployment
    Replies: 3
    Last Post: 6th August 2007, 20:39

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.