$ sudo apt-get install git
$ sudo apt-get install python-setuptools python-dev python-pip build-essential
$ sudo pip install git+https://github.com/gnuradio/pybombs.git
安装到第三步时出现报错:
Could not find a version that satisfies the requirement ruamel.yaml>=0.15.0 (from PyBOMBS===2.3.4a0) (from versions: )
No matching distribution found for ruamel.yaml>=0.15.0 (from PyBOMBS===2.3.4a0)
解决办法:
sudo apt-get purge runit
sudo apt-get purge git-all
sudo apt-get purge git
sudo apt-get autoremove
sudo apt update
sudo apt install git
重新运行第3句:
运行结束.
参考链接: https://bugs.launchpad.net/ubuntu/+source/runit/+bug/1448164