benwall
1
Hi,
I am looking for assistance with installing the pylogix python package
I am unable to install pip and cannot manually download the package and install it manually
“python setup.py install --user”
I will be using this unit to interrogate certain tags on an AllenBradley PLC and then SMS based on their status.
Cheers
Ben
AndzejJ
3
Hello,
Firstly, check if you have python3.11 installed:
opkg list-installed | grep python
If not, install it with:
opkg update
opkg install python3
Then, you can download and install pip via:
wget https://bootstrap.pypa.io/get-pip.py -O /tmp/get-pip.py
python3.11 /tmp/get-pip.py
Install pylogix:
pip install pylogix
Verify that pylogix is installed, as in the example provided on Github.
Hope this helps!
Kind Regards,
benwall
4
Thankyou!! I will give this a shot and reply back.
benwall
5
Installed!! Thankyou very much
system
Closed
6
This topic was automatically closed after 15 days. New replies are no longer allowed.