You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get this error with example.py address port
from pymodbus.client.sync import ModbusTcpClient
ModuleNotFoundError: No module named 'pymodbus.client.sync'
Iit's work when i modify init.py this two line
from pymodbus.client.sync import ModbusTcpClient
from pymodbus.client.sync import ModbusSerialClient
by
from pymodbus.client import ModbusTcpClient
from pymodbus.client import ModbusSerialClient
I don't know if is the right solution
Regards
Jean-Marie
The text was updated successfully, but these errors were encountered:
I get this error with example.py address port
from pymodbus.client.sync import ModbusTcpClient
ModuleNotFoundError: No module named 'pymodbus.client.sync'
Iit's work when i modify init.py this two line
by
I don't know if is the right solution
Regards
Jean-Marie
The text was updated successfully, but these errors were encountered: