FreeOpcUa / opcua-modeler

GUI to create OPC UA models and export them as XML
GNU General Public License v3.0
241 stars 88 forks source link

Install opcua-modeler on MacOS #69

Open mw84367 opened 5 years ago

mw84367 commented 5 years ago

Hi,

I've installed opcua-modeler on MacOS using the way it is done on Linux.

pip install opcua-modeler Collecting opcua-modeler Requirement already satisfied: opcua-widgets>=0.5.5 in /usr/local/lib/python2.7/site-packages (from opcua-modeler) (0.5.5) Requirement already satisfied: opcua>=0.95.1 in /usr/local/lib/python2.7/site-packages (from opcua-modeler) (0.98.5) Requirement already satisfied: lxml in /usr/local/lib/python2.7/site-packages (from opcua>=0.95.1->opcua-modeler) (4.2.4) Requirement already satisfied: enum34 in /usr/local/lib/python2.7/site-packages (from opcua>=0.95.1->opcua-modeler) (1.1.6) Requirement already satisfied: trollius in /usr/local/lib/python2.7/site-packages (from opcua>=0.95.1->opcua-modeler) (2.2) Requirement already satisfied: pytz in /usr/local/lib/python2.7/site-packages (from opcua>=0.95.1->opcua-modeler) (2018.5) Requirement already satisfied: python-dateutil in /usr/local/lib/python2.7/site-packages (from opcua>=0.95.1->opcua-modeler) (2.7.3) Requirement already satisfied: futures in /usr/local/lib/python2.7/site-packages (from opcua>=0.95.1->opcua-modeler) (3.2.0) Requirement already satisfied: six in /usr/local/lib/python2.7/site-packages (from trollius->opcua>=0.95.1->opcua-modeler) (1.11.0) Installing collected packages: opcua-modeler Successfully installed opcua-modeler-0.5.5

When I run opcua-modeler I get the following error:

host:~ user$ opcua-modeler No handlers could be found for logger "opcua.client.client" Traceback (most recent call last): File "/usr/local/bin/opcua-modeler", line 7, in <module> from uamodeler.uamodeler import main File "/usr/local/lib/python2.7/site-packages/uamodeler/uamodeler.py", line 21, in <module> from uamodeler.uamodeler_ui import Ui_UaModeler ImportError: No module named uamodeler_ui

It looks like that there is something wrong with paths.

How can I fix it?

Thanks

Mike

oroulet commented 5 years ago

You need Python 3 not Python 2

On Tue, Aug 21, 2018, 08:35 mw84367 notifications@github.com wrote:

Hi,

I've installed opcua-modeler on MacOS using the way it is done on Linux.

pip install opcua-modeler Collecting opcua-modeler Requirement already satisfied: opcua-widgets>=0.5.5 in /usr/local/lib/python2.7/site-packages (from opcua-modeler) (0.5.5) Requirement already satisfied: opcua>=0.95.1 in /usr/local/lib/python2.7/site-packages (from opcua-modeler) (0.98.5) Requirement already satisfied: lxml in /usr/local/lib/python2.7/site-packages (from opcua>=0.95.1->opcua-modeler) (4.2.4) Requirement already satisfied: enum34 in /usr/local/lib/python2.7/site-packages (from opcua>=0.95.1->opcua-modeler) (1.1.6) Requirement already satisfied: trollius in /usr/local/lib/python2.7/site-packages (from opcua>=0.95.1->opcua-modeler) (2.2) Requirement already satisfied: pytz in /usr/local/lib/python2.7/site-packages (from opcua>=0.95.1->opcua-modeler) (2018.5) Requirement already satisfied: python-dateutil in /usr/local/lib/python2.7/site-packages (from opcua>=0.95.1->opcua-modeler) (2.7.3) Requirement already satisfied: futures in /usr/local/lib/python2.7/site-packages (from opcua>=0.95.1->opcua-modeler) (3.2.0) Requirement already satisfied: six in /usr/local/lib/python2.7/site-packages (from trollius->opcua>=0.95.1->opcua-modeler) (1.11.0) Installing collected packages: opcua-modeler Successfully installed opcua-modeler-0.5.5

When I run opcua-modeler I get the following error:

host:~ user$ opcua-modeler No handlers could be found for logger "opcua.client.client" Traceback (most recent call last): File "/usr/local/bin/opcua-modeler", line 7, in from uamodeler.uamodeler import main File "/usr/local/lib/python2.7/site-packages/uamodeler/uamodeler.py", line 21, in from uamodeler.uamodeler_ui import Ui_UaModeler ImportError: No module named uamodeler_ui

It looks like that there is something wrong with paths.

How can I fix it?

Thanks

Mike

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/FreeOpcUa/opcua-modeler/issues/69, or mute the thread https://github.com/notifications/unsubscribe-auth/ACcfzt6EctaaUA0TgJ8IGWl2Qy5fu22Zks5uS6o7gaJpZM4WFLwX .

mw84367 commented 5 years ago

Thanks for your very quick response.

This fixed the issue ;)