From: Carlos P. <cpa...@ce...> - 2016-08-22 09:16:41
|
Sorry for the late reply. I was on holidays ... It looks like you need to install the ply python module, which is a dependency for the synoptics. See a list of deps for the 3.x series in: http://www.taurus-scada.org/en/3.7.3/users/getting_started.html#dependencies And for Taurus4 in: http://www.taurus-scada.org/en/stable/users/getting_started.html#dependencies Cheers! Carlos On Thu 21 July 2016 11:41:14 Lukasz Zytniak wrote: > Hello Carlos, > > I apologize that I sent email only to Alba, I hoped that it is some > minor problem, that can be fixed on fly. I launched taurusgui with > `--taurus-log-level=debug` and '--fail-proof' flag, please check > attachment. > Moreover, I found out that I have problem to import jdraw module from > taurus. > I installed taurus 3.7.3 with –egg > > I tried also with script that you sent but with the same effect. > > Do you have any advice for me? > > Thank you in advance for your help. > > Kind regards, > Lukasz > > > On 20/07/16 17:55, "Carlos Pascual" <cpa...@ce...> wrote: > > Hi Lukasz, > > > +-------------------------------------------------------------------- > ----------------------------+ Comment before the reply: > Please use the Taurus mailing list(s) for this type of questions > rather than contacting us directly. It is more convenient for us > and it benefits the community. > I am CC-ing to the tauruslib-users list so that the reply can be > useful for other people as well. > > +-------------------------------------------------------------------- > ----------------------------+ > It looks like a problem with reading your synoptic file > ("ufo_small_prevac") is preventing the synoptic to load. > Make sure that the location of the file is ok. > > You may get more info by launching the taurusgui with > `--taurus-log-level=debug` > > You can also confirm that your installation and, particularly, the > synoptic widget, is ok by running > `taurusgui example01 --fail-proof` > > (It should load a demo gui with a couple of synoptics, I just did > that on a fresh installation of taurus-3.7.3 and works fine for me. > ) > Another idea to have less noise while debugging: write a small > script that instantiates a TaurusJdrawSynopticView and loads your > file. Something like: > > ~~~~ > import sys > import taurus > taurus.setLogLevel(taurus.Debug) > > from taurus.qt.qtgui.application import TaurusApplication > from taurus.qt.qtgui.graphic import TaurusJDrawSynopticsView > > app = TaurusApplication() > w = TaurusJDrawSynopticsView() > > fname = 'path/to/a/jdw/file' # <--put abs path to your file > > w.setModel(fname) > w.show() > sys.exit(app.exec_()) > ~~~~ > > I hope this helps. > > Carlos > > On Wed 20 July 2016 14:56:02 Lukasz Zytniak wrote: > > > Hello, > > > > I have probably easy to solve problem, I am using newest > > TangoBox with taurus 3.7.3 but when I tried to run my old > > TaurusGUI I get error: [cid:image001.png@01D1E2A7.96D8C720] > > > > > > Thank you in advance for your help. > > > > Best regards, > > Lukasz > > > -- |