Download: Difference between revisions

From GNU Radio
Jump to navigation Jump to search
(Removed dead links to Jenkins, old Git info.)
mNo edit summary
Line 34: Line 34:


  git checkout <branch>
  git checkout <branch>
=== Even more bleeding-edge development code (Katana-edge) ===
The next branch is too stale for your taste? Some of the developers have exposed their development repositories. If you want to check these out, we're assuming you know what you're doing, so no more explanations:
* Tom's repos: https://github.com/trondeau

Revision as of 20:55, 7 June 2021

Source Download instructions

Stable

The latest stable release, as well as older stable releases, of GNU Radio can be found here:

or here

Also, check the news (in the box at the right) for announcements on the latest stable releases.

Signing keys are available with the Github releases. Also see ReleaseKey.

Development

If you prefer the latest development code, wish to contribute to GNU Radio, or want to work with features that haven't yet made it into the stable branch, you can check out the source from the git repository:

$ git clone https://github.com/gnuradio/gnuradio.git

Later, to update your local repository you can run:

$ git pull

The following branches are under development:

  • master (future 3.10)
  • maint-3.9
  • maint-3.8.

By default, the master branch will be checked out. To switch to a different branch:

git checkout <branch>