This repository contains the Python code used throughout the posts in my blog Things DAQ.
This is a living list and it is updated as posts containing example code are created:
I use two plotting libraries in my code examples: matplotlib and plotly
One way I got them to work with the right numpy version was running the following commands in a Pi terminal:
sudo apt update
sudo apt remove python3-numpy
sudo apt-get install libatlas-base
sudo apt install python3-matplotlib
sudo apt install python3-plotly
- Installing matlplotlib will automatically install the right numpy version.
- To my understanding, libatlas-base insures compatiblity with the Pi-based numpy installation.