Closed jamesbraza closed 1 year ago
You have to distiguish the two terms carfully: service --- referes to a windows service (program runs as a windows service) which can only be an executable, never a python programm
If you want the open opc gateway server to run as a python module (for testing and debugging for example) you can do so by:
python -m gateway_server.py
The
OpenOPC Gateway
section of the currentREADME.md
says:Firstly, I believe this is out of date, as it's actually
gateway_service
in OpenOPC 2. Secondly, thanks for including the service in theopenopc2
Python package, as it enables me to not have togit clone
this repo to install the service.Now, after
pip install openopc2
into avenv
, I am trying to debug the Gateway service without usingpyinstaller
to compile it into an executable like so:The request is two parts:
README.md
to have the right command for local running.py
file without building an executable withpyinstaller
?