Fork me on GitHub

Other articles

  1. Запуск в docker GUI-приложения в Ubuntu

    Полезные ссылки

    Шаги которые нужно проделать

    1. Создать Dockerfile
    FROM centos:8
    RUN yum install firefox -y
    CMD ["/usr/bin/firefox"]
    

    или вот такой:

    FROM ubuntu:20.04
    # нужно Configuring …
    read more
  2. Python and QT5

    Полезные ссылки

    sudo apt-get install python3-pyqt5
    или
    pip install PyQt5
    
    pip3 install pyqt5-tools
    
    • Запуск Qt Designer
    pyqt5-tools designer
    

    Установить QT Creator in Ubuntu

    sudo apt install qtcreator
    sudo apt install build-essential
    sudo apt install qt5-default
    sudo apt install qt5-doc qt5-doc-html qtbase5-doc-html qtbase5-examples …
    read more
  3. Python and GUI

    Полезные ссылки

    • Gooey-  Turn (almost) any Python command line program into a full GUI application with one line
    • GooeyExamples- Example programs to Demonstrate Gooey's functionality
    • PySimpleGUI - модуль на python3 для отрисовки графических интерфейсов (кроссплатформенный). Документация.
    • Wooey is a simple web interface to run command line Python scripts. Think of it …
    read more

Page 1 / 1

social