1

I was thinking of using Quickly but I don't like Glade and I want to use pyside. I want to start my starch. Should I delete all the files and create a pyside python file? Will Quickly still work with it and will it be considered for Ubuntu app showdown?

Let me tell you that pyside is the official python bindings to qt and it is under the LGPL license and it is available in default Ubuntu repository.

So tell me a good practice but I will still like to use Unity and Ubuntu specific libraries or components that quickly has.

jokerdino
  • 41,320
user49557
  • 498

2 Answers2

2

In that case, I would recommend using the QtQuick Quickly template that's currently in development.

With it, you'll be able to use Quickly with PySide (and QML) as you're intending to do.

Note that this template is still in development and is thus not yet part of the Quickly core set of templates, so use it at your own risk and do not expect everything to work.

That said, last time I tried it, it worked quite well, and had no issues at all with it.

Here's how to install it, simply run this command on a terminal to install it from the daily PPA:

sudo add-apt-repository ppa:quickly-templates-hackers/quickly-community-templates-daily

Then install it:

sudo apt-get update && sudo apt-get install quickly-ubuntu-application-qt-template

Once installed, you can create a QtQuick application with the following command:

quickly create ubuntu-qtquick-application <yourappname>

You can also create a pure Qt app with the Qt template:

quickly create ubuntu-qt-application <yourappname>

If you find any bugs with the template, we'd appreciate it if you would report them, which would help us make it better for you and everyone else using it.

0

Well the above method did not worked for me so i find an another method. after searching i got this website https://launchpad.net/quickly-ubuntu-qt-template and found the answer.

  • Open a terminal and add this repository using sudo add-apt-repository ppa:angeloc/quickly-ubuntu-qt-template
  • Then update your packages list sudo apt-get update the packages list will be udpated
  • Then install the required packages using sudo apt-get install quickly-ubuntu-qt-template
  • Then you can create your application using quickly create ubuntu-application-qt test-qt or quickly create ubuntu-application-qtquick test-qtquick source:quickly create https://launchpad.net/quickly-ubuntu-qt-template
user49557
  • 498