timofurrer / w1thermsensor

A Python package and CLI tool to work with w1 temperature sensors like DS1822, DS18S20 & DS18B20 on the Raspberry Pi, Beagle Bone and other devices.
MIT License
493 stars 113 forks source link

CLI not installed? #26

Closed lorthirk closed 7 years ago

lorthirk commented 7 years ago

Hello everyone. I tried to install w1thermsensor on my Raspberry Pi 3 with both apt-get install python-w1thermsensor and pip install w1thermsensor but it seems that che CLI utility doesn't get installed on my Pi. Launching it always yields me a "command not found" error.

Am I missing something?

timofurrer commented 7 years ago

The CLI only get's deployed with the python3 version of w1thermsensor. Try: apt-get install python3-w1thermsensor.

lorthirk commented 7 years ago

Ok, will do. Thanks!