ezRA Linux Install Updates Needed
Issue
Some distros, especially Debian based, have updated their Python package policies. It might be for all Python after a certain version, not really sure. A lot of packages now cannot be installed with pip3 install <package>, but instead need to be pulled from the repo for the distribution.
Solution
Modify instructions to include the alternative method:
pip3 install seaborn is installed now by sudo apt install python3-seaborn
pip3 install astropy is installed now by sudo apt install python3-astropy
pip3 install scipy is installed now by sudo apt install python3-scipy
pyrtlsdr does not have a python3-pyrtlsdr, so I installed with pip3 install pyrtlsdr --break-system-packages. I believe, however, if you were doing this in a virtual environment, you may not have to do this. I write stuff in stone.....
ezRA Linux Install Updates Needed
Issue
Some distros, especially Debian based, have updated their Python package policies. It might be for all Python after a certain version, not really sure. A lot of packages now cannot be installed with
pip3 install <package>, but instead need to be pulled from the repo for the distribution.Solution
Modify instructions to include the alternative method:
pip3 install seabornis installed now bysudo apt install python3-seabornpip3 install astropyis installed now bysudo apt install python3-astropypip3 install scipyis installed now bysudo apt install python3-scipypyrtlsdr does not have a python3-pyrtlsdr, so I installed with
pip3 install pyrtlsdr --break-system-packages. I believe, however, if you were doing this in a virtual environment, you may not have to do this. I write stuff in stone.....