How can I install PyQt5 on Mac?

后端 未结 6 1020
醉酒成梦
醉酒成梦 2021-02-07 09:31

I am trying to install PyQt5 on my Mac but I do not know how to use it well. I have tried to install sip doing

cd ~/Downloads/sip-4.17
python configure.py
         


        
6条回答
  •  长发绾君心
    2021-02-07 09:39

    Qt is set of cross-platform C++ libraries that implement high-level APIs for accessing many aspects of modern desktop and mobile systems. These include location and positioning services, multimedia, NFC and Bluetooth connectivity, a Chromium based web browser, as well as traditional UI development.

    PyQt5 is a comprehensive set of Python bindings for Qt v5. It is implemented as more than 35 extension modules and enables Python to be used as an alternative application development language to C++ on all supported platforms including iOS and Android.

    PyQt5 may also be embedded in C++ based applications to allow users of those applications to configure or enhance the functionality of those applications.

         brew install PyQt5 (or) pip3 install PyQt5
    

提交回复
热议问题