Questions tagged [pyqtdeploy]

Use this tag for questions about the pyqtdeploy utility, which is a development tool for deploying PyQt applications to desktop and mobile platforms.

31 questions
1
vote
2 answers

pyqtdeploy: how to set application icon for Android?

I'm following this howto to build an Android application with Python3 and Qt5. Nearly everything works fine but somehow I cannot find out how to set the application icon. In the documentation I could not find anything neither.. And just in case you…
frans
  • 8,868
  • 11
  • 58
  • 132
1
vote
0 answers

Convert PyQt5 Desktop App to IOS/MacOS app developed using python

I want to convert a Desktop GUI app designed using PyQT5 desinger which was converted to python code using pyuic5 and now i am looking for information on how this Desktop Gui App can be converted to iOS/MacOS. I tried pyqtdeploy those commands given…
vinodh
  • 167
  • 2
  • 8
1
vote
0 answers

pyqtdeploy: add external modules

is there someone who has experience with pyqtdeploy and adding external modules? I am currently using pyqtdeploy (version 1.2) together with PyQt 5.5.1 to write an application that can be deployed to an Android device. Without any external modules,…
user2494129
  • 717
  • 2
  • 13
  • 24
1
vote
1 answer

pyqtdeploy GUI does not start

I have installed python3.4, Qt5.5 and PyQt5 on Ubuntu 14.04. Pyqtdeploy was installed with pip3 install pyqtdeploy Now if I try to make a new project file and start the gui with: pyqtdeploy newproject.pdy I get a couple of these error messages (all…
shofstetter
  • 254
  • 1
  • 10
1
vote
1 answer

pyqtdeploy: standart library and site-packages

I am trying to build a pyqt5 project with pyqtdeploy on ubuntu. It fails early on stating Unable to freeze files with the error message FileNotFoundError: [Errno 2] No such file or directory: '/usr/lib/python3.4/site-packages/PyQt5/__init__.py' In…
IARI
  • 1,217
  • 1
  • 18
  • 35
1
vote
2 answers

Error with PyQtDeploy

I'm using PyQt 5.3.1 and I'm deploying with pyqtdeploy 0.4 and when i want to build a project i obtain this error message: Generating code... Cleaning E:\ProgramasPython3\PythonQT\QTCalculator\build. Freezing…
Tobal
  • 709
  • 2
  • 11
  • 31
0
votes
1 answer

pyqtdeploy issue with how to proceed

I'm trying to be able to deploy a project that I made with pyqt5 using pyqtdeploy, I read the whole documentation, which sucks (sorry for the language), I even read the 1.3.2 version, and I still don't know how to make it work. I installed all the…
0
votes
1 answer

Demo folder not found pyqtdeploy

I am trying to deploy my pyqt project using pyqtdeploy using this https://www.riverbankcomputing.com/static/Docs/pyqtdeploy/demo.html But i didn't found demo folder
0
votes
1 answer

Unable to detect MSVC2015 or MSVC2017

I'm following the tutorial but when I run pyqtdeploy myproject.pdy It shows a popup saying Unable to detect MSVC2015 or MSVC2017 I have visual studio 2017 installed with all the c++ components in the installer, I also have Qt installed.
rafalou38
  • 576
  • 1
  • 5
  • 16
0
votes
2 answers

How to add required libraries to a pyqtdeploy project file for an Android app?

I have already successfully deployed a QtWigets app to Android using PyQt5 and pyqtdeploy. However when I want to deploy a QML based app the app crashes. What I found out is that Qt5QuickTemplates2.so and Qt5QuickControls2.so are missing for the…
Olaf Japp
  • 480
  • 5
  • 19
0
votes
1 answer

Setting ANDROID_NDK_PLATFORM in Ubuntu

What is ANDROID_NDK_PLATFORM env variable and how do we choose the value for it for building with Qt Creator in ubuntu
computernoob
  • 420
  • 4
  • 18
0
votes
1 answer

Execution failed when building OpenSSL: returned exit code 1

Execution failed when building OpenSSL: returned exit code 1, how should I deal with this problem? Hello, this is my first time using pyqtdeploy. I am learning according to the user Guide. My python version is 3.6.7 and the pyqtdeploy version is…
D.J.Fly
  • 11
  • 3
0
votes
1 answer

pyqtdeploy: qt license file not found

I'm trying to work my way through the pyqtdeploy documentation, trying to build the pyqt-demo project. My system is an Ubuntu 18.04 (fresh installation, up-to-date) $ uname -a : Linux sui 4.15.0-39-generic #42-Ubuntu SMP Tue Oct 23 15:48:01 UTC 2018…
suizokukan
  • 1,303
  • 4
  • 18
  • 33
0
votes
0 answers

PyQt5 and QtWebView on Android

First, I have to admit I come back to this topic from time to time, and always I am very confused. I'd like to use PyQt5 to test wether I could make a test application working on Android. This application should have a web view inside, and here…
umbe1987
  • 2,894
  • 6
  • 35
  • 63
0
votes
1 answer

using pyqtdeploy with homebrew installation of Qt5

I'm trying out the pyqdeploy tutorial at http://pyqt.sourceforge.net/Docs/pyqtdeploy/tutorial.html. I'm working on an iMac, OS 10.11, latest XCode installed, and homebrew installations of Qt5.5.1, Python 3.5, sip, and PyQt5. I can run the pyqtdeploy…