Is Qt Designer bundled with Anaconda?

I am using Python 3.4 through anaconda 4.0, which has all the pyQt4 modules packaged with it. Can I use Qt Designer with this? When I look in / anaconda / pkgs / qt -4.8.7-1 / bin, there is a Qt icon called Designer, but clicking on it gives nothing but "The designer cannot be opened due to a problem."

Before you all yell at me, a similar question posted in Where is the Qt Developer Application on Mac + Anaconda? didn't help me. I tried downloading QtCreator and didn't seem to find the other python packages I installed (not that I really know what I'm doing).

If I install Qt in its entirety to get the constructor, will that cause confusion with the Qt packages I installed in Anaconda?

+9
source share
6 answers

In anaconda\Library\binfor me there designer.exe.

Anaconda version 4.0.0

+19
source

I also searched for the QT constructor on my Windows 7 on which Anaconda 5.1 was installed.
The easiest way to run the QT constructor:
Run "Anaconda Prompt", then type designerin the command shell. You will have a QT designer.

+10
source

...

Anaconda . , .

+2

Anaconda 3, /Users/apple/anaconda/bin/Designer.app/Contents/MacOS.

+1

, Anaconda QtDesigner.

, : python, , mac - python3 , QtDesigner.

.

0

QtDesigner :

  1. conda ( ) :

    $ conda

  2. "" ( , ):

    () $ designer

:

bash , :

"bin" /home/user_name/bin designer.sh.

( ).

designer.sh:

#!/usr/bin/env bash
echo ""
. /home/user_name/anaconda3/etc/profile.d/conda.sh
conda activate
eval "$(conda shell.bash hook)"
designer

designer.desktop:

[Desktop Entry]
Version=1.0
Type=Application
Name=Anaconda-Designer
GenericName=AnacondaDesign
Exec=/bin/bash "/home/user_name/bin/designer.sh"
Icon=/home/user_name/anaconda3/lib/python3.7/site-packages/anaconda_navigator/static/images/qtcreator-icon-1024x1024.png
Terminal=false
StartupNotify=true

"" ( ).

, .

0
source

All Articles