You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.....
The text was updated successfully, but these errors were encountered:
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 bysudo apt install python3-seaborn
pip3 install astropy
is installed now bysudo apt install python3-astropy
pip3 install scipy
is installed now bysudo 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.....The text was updated successfully, but these errors were encountered: