How to upgrade gnuradio 3.7.5 to above?
I want to upgrade gnuradio companion but I do not know any command any one who know please help me?
gnuradio
bumped to the homepage by Community♦ 2 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I want to upgrade gnuradio companion but I do not know any command any one who know please help me?
gnuradio
bumped to the homepage by Community♦ 2 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Why do you want a newer version of the software? Do you need to use a feature that was added or does it fix a bug for you? Otherwise just leave it the way it is. You can always upgrade to a newer Ubuntu release. Wily has gnuradio 3.7.8 currently.
– David Foerster
Feb 15 '16 at 10:11
because of some modules or files supported in a newer version
– ashe
Feb 15 '16 at 11:32
add a comment |
I want to upgrade gnuradio companion but I do not know any command any one who know please help me?
gnuradio
I want to upgrade gnuradio companion but I do not know any command any one who know please help me?
gnuradio
gnuradio
asked Feb 15 '16 at 9:00
asheashe
112
112
bumped to the homepage by Community♦ 2 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 2 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Why do you want a newer version of the software? Do you need to use a feature that was added or does it fix a bug for you? Otherwise just leave it the way it is. You can always upgrade to a newer Ubuntu release. Wily has gnuradio 3.7.8 currently.
– David Foerster
Feb 15 '16 at 10:11
because of some modules or files supported in a newer version
– ashe
Feb 15 '16 at 11:32
add a comment |
Why do you want a newer version of the software? Do you need to use a feature that was added or does it fix a bug for you? Otherwise just leave it the way it is. You can always upgrade to a newer Ubuntu release. Wily has gnuradio 3.7.8 currently.
– David Foerster
Feb 15 '16 at 10:11
because of some modules or files supported in a newer version
– ashe
Feb 15 '16 at 11:32
Why do you want a newer version of the software? Do you need to use a feature that was added or does it fix a bug for you? Otherwise just leave it the way it is. You can always upgrade to a newer Ubuntu release. Wily has gnuradio 3.7.8 currently.
– David Foerster
Feb 15 '16 at 10:11
Why do you want a newer version of the software? Do you need to use a feature that was added or does it fix a bug for you? Otherwise just leave it the way it is. You can always upgrade to a newer Ubuntu release. Wily has gnuradio 3.7.8 currently.
– David Foerster
Feb 15 '16 at 10:11
because of some modules or files supported in a newer version
– ashe
Feb 15 '16 at 11:32
because of some modules or files supported in a newer version
– ashe
Feb 15 '16 at 11:32
add a comment |
1 Answer
1
active
oldest
votes
You can build it from sources, of cource, or install via PyBombs. I like the way with PyBombs. You got a most newer version, but i recommend to REMOVE currently installed via apt-get version of gnu-radio:
sudo apt-get remove gnuradio* libgnuradio-*
Do not forget to remove the libraries that depends on gnuradio. If something goes wrong, you can always install them back :)
First, install pip
sudo apt-get install python-pip python-dev build-essential
sudo pip install --upgrade pip
sudo pip install --upgrade virtualenv
Next: PyBombs
sudo pip install PyBOMBS
sudo pybombs prefix init /usr/local -a default_prx
sudo pybombs config default_prefix default_prx
sudo pybombs recipes add gr-recipes git+https://github.com/gnuradio/gr-recipes.git
sudo pybombs recipes add gr-etcetera git+https://github.com/gnuradio/gr-etcetera.git
Next, install gnuradio:
sudo pybombs install gnuradio
If you are like to use beautiful gr-fosphor, install it by:
sudo apt-get install libfreetype6-dev ocl-icd-opencl-dev libqt4-opengl-dev
sudo pybombs install gr-fosphor
Thats it, we are done!
PS: to avoid some possible errors, check if you gcc-compiler version are >= 5, but not => 6
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f734822%2fhow-to-upgrade-gnuradio-3-7-5-to-above%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can build it from sources, of cource, or install via PyBombs. I like the way with PyBombs. You got a most newer version, but i recommend to REMOVE currently installed via apt-get version of gnu-radio:
sudo apt-get remove gnuradio* libgnuradio-*
Do not forget to remove the libraries that depends on gnuradio. If something goes wrong, you can always install them back :)
First, install pip
sudo apt-get install python-pip python-dev build-essential
sudo pip install --upgrade pip
sudo pip install --upgrade virtualenv
Next: PyBombs
sudo pip install PyBOMBS
sudo pybombs prefix init /usr/local -a default_prx
sudo pybombs config default_prefix default_prx
sudo pybombs recipes add gr-recipes git+https://github.com/gnuradio/gr-recipes.git
sudo pybombs recipes add gr-etcetera git+https://github.com/gnuradio/gr-etcetera.git
Next, install gnuradio:
sudo pybombs install gnuradio
If you are like to use beautiful gr-fosphor, install it by:
sudo apt-get install libfreetype6-dev ocl-icd-opencl-dev libqt4-opengl-dev
sudo pybombs install gr-fosphor
Thats it, we are done!
PS: to avoid some possible errors, check if you gcc-compiler version are >= 5, but not => 6
add a comment |
You can build it from sources, of cource, or install via PyBombs. I like the way with PyBombs. You got a most newer version, but i recommend to REMOVE currently installed via apt-get version of gnu-radio:
sudo apt-get remove gnuradio* libgnuradio-*
Do not forget to remove the libraries that depends on gnuradio. If something goes wrong, you can always install them back :)
First, install pip
sudo apt-get install python-pip python-dev build-essential
sudo pip install --upgrade pip
sudo pip install --upgrade virtualenv
Next: PyBombs
sudo pip install PyBOMBS
sudo pybombs prefix init /usr/local -a default_prx
sudo pybombs config default_prefix default_prx
sudo pybombs recipes add gr-recipes git+https://github.com/gnuradio/gr-recipes.git
sudo pybombs recipes add gr-etcetera git+https://github.com/gnuradio/gr-etcetera.git
Next, install gnuradio:
sudo pybombs install gnuradio
If you are like to use beautiful gr-fosphor, install it by:
sudo apt-get install libfreetype6-dev ocl-icd-opencl-dev libqt4-opengl-dev
sudo pybombs install gr-fosphor
Thats it, we are done!
PS: to avoid some possible errors, check if you gcc-compiler version are >= 5, but not => 6
add a comment |
You can build it from sources, of cource, or install via PyBombs. I like the way with PyBombs. You got a most newer version, but i recommend to REMOVE currently installed via apt-get version of gnu-radio:
sudo apt-get remove gnuradio* libgnuradio-*
Do not forget to remove the libraries that depends on gnuradio. If something goes wrong, you can always install them back :)
First, install pip
sudo apt-get install python-pip python-dev build-essential
sudo pip install --upgrade pip
sudo pip install --upgrade virtualenv
Next: PyBombs
sudo pip install PyBOMBS
sudo pybombs prefix init /usr/local -a default_prx
sudo pybombs config default_prefix default_prx
sudo pybombs recipes add gr-recipes git+https://github.com/gnuradio/gr-recipes.git
sudo pybombs recipes add gr-etcetera git+https://github.com/gnuradio/gr-etcetera.git
Next, install gnuradio:
sudo pybombs install gnuradio
If you are like to use beautiful gr-fosphor, install it by:
sudo apt-get install libfreetype6-dev ocl-icd-opencl-dev libqt4-opengl-dev
sudo pybombs install gr-fosphor
Thats it, we are done!
PS: to avoid some possible errors, check if you gcc-compiler version are >= 5, but not => 6
You can build it from sources, of cource, or install via PyBombs. I like the way with PyBombs. You got a most newer version, but i recommend to REMOVE currently installed via apt-get version of gnu-radio:
sudo apt-get remove gnuradio* libgnuradio-*
Do not forget to remove the libraries that depends on gnuradio. If something goes wrong, you can always install them back :)
First, install pip
sudo apt-get install python-pip python-dev build-essential
sudo pip install --upgrade pip
sudo pip install --upgrade virtualenv
Next: PyBombs
sudo pip install PyBOMBS
sudo pybombs prefix init /usr/local -a default_prx
sudo pybombs config default_prefix default_prx
sudo pybombs recipes add gr-recipes git+https://github.com/gnuradio/gr-recipes.git
sudo pybombs recipes add gr-etcetera git+https://github.com/gnuradio/gr-etcetera.git
Next, install gnuradio:
sudo pybombs install gnuradio
If you are like to use beautiful gr-fosphor, install it by:
sudo apt-get install libfreetype6-dev ocl-icd-opencl-dev libqt4-opengl-dev
sudo pybombs install gr-fosphor
Thats it, we are done!
PS: to avoid some possible errors, check if you gcc-compiler version are >= 5, but not => 6
answered May 29 '17 at 19:57
AlsterAlster
113
113
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f734822%2fhow-to-upgrade-gnuradio-3-7-5-to-above%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Why do you want a newer version of the software? Do you need to use a feature that was added or does it fix a bug for you? Otherwise just leave it the way it is. You can always upgrade to a newer Ubuntu release. Wily has gnuradio 3.7.8 currently.
– David Foerster
Feb 15 '16 at 10:11
because of some modules or files supported in a newer version
– ashe
Feb 15 '16 at 11:32