-1

I'm trying to install the gnuradio and while trying to run this cmd line:

git clone --recursive git://git.gnuradio.org/gnuradio.git

I got stuck with this error:

Cloning into 'gnuradio'...
fatal: unable to connect to git.gnuradio.org:
git.gnuradio.org[0: 140.211.167.19]: errno=Connection timed out

Any idea of how to solve this connection problem, please?

Hadad
  • 151
  • 2
  • 7
  • Where did you find this URL? Also, to install GNU Radio, you usually don't have to download the source code (that's only necessary if you want to *modify* GNU Radio), but should use your system's native methods for simply installing GNU Radio from packages. – Marcus Müller Jun 28 '19 at 07:25
  • @Marcus Müller, I got it from here: https://wiki.gnuradio.org/index.php/UbuntuInstall – Hadad Jun 28 '19 at 10:44
  • Literally FIRST sentence, in bold: **Note: this page is not update anymore** so. Don't do this. – Marcus Müller Jun 28 '19 at 14:17

1 Answers1

0

Try this instead:

git clone --recursive https://github.com/gnuradio/gnuradio.git

https://wiki.gnuradio.org/index.php/InstallingGR

fmagno
  • 1,446
  • 12
  • 27
  • I'm trying to follow your recommendation where you refereed me to go to https://wiki.gnuradio.org/index.php/Tutorials to be more familiar with gnuradio .. now I'm really confused, your cmd line works, but why would they keep a non working problematic cmd line! How far I can trust these instructions! Also, I don't see where you got the above command line from, its not in the linked page you provided above!? – Hadad Jun 28 '19 at 10:53
  • @Hadad, hmm... Indeed, I didn't notice that specific line was outdated in the wiki. Should be fixed now: https://wiki.gnuradio.org/index.php/InstallingGR – fmagno Jun 28 '19 at 11:24