我想使用PyBombs(https://github.com/gnuradio/pybombs)安装特定的gnuradio库发行版(3.7.10)。 我已经完成了以下步骤:
sudo pip install PyBOMBS
pybombs auto-config
pybombs recipes add gr-recipes git+https://github.com/gnuradio/gr-recipes.git
pybombs recipes add gr-etcetera git+https://github.com/gnuradio/gr-etcetera.git
mkdir /home/myuser/gnuradio
现在,如果我运行pybombs prefix init /home/myuser/gnuradio/prefix -a myprefix -R gnuradio-default
,它将安装最新的gnuradio。我怎么能安装一些旧版本?我在配方文件/home/myuser/.pybombs/recipes/gr-recipes/gnuradio.lwr
中看到我可以设置分支,但是可以设置发布标记吗?
我的机器正在运行Ubuntu 16.04
答案 0 :(得分:3)
以下是我安装旧版标记版本v3.7.11的方法,请在安装前注意pybombs config命令:
sudo pip install PyBOMBS
pybombs auto-config
pybombs recipes add gr-recipes git+https://github.com/gnuradio/gr-recipes.git
pybombs recipes add gr-etcetera git+https://github.com/gnuradio/gr-etcetera.git
mkdir /home/myuser/gnuradio
pybombs config --package gnuradio gitrev v3.7.11
pybombs prefix init /home/myuser/gnuradio/prefix -a myprefix -R gnuradio-default