zefanja / aqi

Measure AQI based on PM2.5 or PM10 with a Raspberry Pi and a SDS011 particle sensor
GNU General Public License v3.0
94 stars 46 forks source link

Cannot find package python-serial and python-enum #17

Open sharad643 opened 2 years ago

sharad643 commented 2 years ago

Hi , I was able to replicate your code back in the summer but now when I try to do the same again I cannot find the packages serial and enum needed to run the code. Do you have a solution to this?

vvidovic-croz commented 2 years ago

Hi , I was able to replicate your code back in the summer but now when I try to do the same again I cannot find the packages serial and enum needed to run the code. Do you have a solution to this?

The serial module is not included in the Python distribution, the easy way to install it is:

pip install pyserial

See more at: