Hello Peter

I had installed yesterday on my laptop with Ubuntu 14.04
I tried using WGET......... but I got the similar problems like you
regarding the git..
So, I have installed it from source and haven't got any problem.

You can follow these steps for installing it from source

Thee are two methods to install but I preferred to install it from source

1)Install Dependencies:

//Copy the below commands and paste it in terminal(all at a single time)//
sudo apt-get -y install libfontconfig1-dev libxrender-dev libpulse-dev swig
g++ automake autoconf libtool python-dev libfftw3-dev libcppunit-dev
libboost-all-dev libusb-dev fort77 sdcc sdcc-libraries libsdl1.2-dev
python-wxgtk2.8 git-core guile-1.8-dev libqt4-dev python-numpy ccache
python-opengl libgsl0-dev python-cheetah python-lxml doxygen qt4-dev-tools
libqwt5-qt4-dev libqwtplot3d-qt4-dev pyqt4-dev-tools python-qwt5-qt4

2)Install prerequesties for UHD
sudo apt-get install libboost-all-dev libusb-1.0-0-dev python-cheetah
doxygen python-docutils cmake

3)Installing UHD from git
git clone git://github.com/EttusResearch/uhd.git

4)Cmake for UHD
//Follow these commands step by stp//
cd uhd/host/
mkdir build
cd build/
cmake ../

5) //Check the output of above one regarding the disabled components. Based
upon our requirement we should select the USRP.//
For example: cmake -DENABLE_USRP_E_UTILS=ON -DENABLE_E100=ON ../

6)make

7)Installing UHD and setting library path
make test(check whether it shows 100% or not)
sudo make install
cd
sudo gedit .bashrc

8)//Add this after HISTCONTROL=ignoredups:ignorespace//

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:usr/local/lib

//Save it and close//

9)git clone http://gnuradio.org/git/gnuradio.git
///This will take some time Can take even more than 2hrs////

cd gnuradio/
mkdir build/
cd build/
cmake ../
make
make test
sudo make install
sudoldconfig
cd
cd /usr/local/lib/python2.6/dist-packages/
pwd
//copy the path//
cd
sudo gedit .bashrc

10) In 8th step we have added a path, after that one add

export PYTHONPATH=$PYTHONPATH:/usr/local/lib/python2.7/dist-packages

//if u prefer python 3.0 then u can add 3.0//
//Save it and close//

11)sudo ldconfig

12)sudo apt-get install gnuradio-companion

Note:
1)If you get any error related to dpkg then run the command as suggested in
the error.

2)Installation can take around 2hours and it depends upon the speed of your
internet

I hope it could help you

Regards
Krishna



On Thu, Mar 5, 2015 at 4:02 PM, Ralph A. Schmid, dk5ras <ra...@schmid.xxx>
wrote:

> I am afraid I did not document this, but I ran into similar issues with the
> script and Kubuntu 14.04. However doing it all by hand, resolving
> dependencies, load uhd and gnuradio sources, compile the stuff, installing
> udev rules, installing the gnuradio icons by hand and such, this all was
> not
> a big deal, and in some cases I simply read the script as a manual how to
> do
> it.
>
> Pybombs is something I could not become friends with yet. For many people
> it
> seems to work, for me all attempts were disastreous.
>
> Ralph.
>
> > -----Original Message-----
> > From: discuss-gnuradio-bounces+ralph=schmid....@gnu.org
> > [mailto:discuss-gnuradio-bounces+ralph=schmid....@gnu.org] On Behalf Of
> > Marcus D. Leech
> > Sent: Wednesday, March 4, 2015 5:43 PM
> > To: discuss-gnuradio@gnu.org
> > Subject: Re: [Discuss-gnuradio] Issues Installing From Source
> >
> > On 03/04/2015 10:40 AM, Peter Witkowski wrote:
> > > Hello,
> > >
> > > In the past, I've always used the build-gnuradio script to install
> > > everything with great success.  This ensures that I have all the
> > > latest versions of both GNU Radio and UHD.
> > >
> > > However, I recently got a new machine and installed Ubuntu 14.04 on it
> > > (I haven't had any issues with 14.04 before). I updated the OS to the
> > > latest version and then tried using build-gnuradio.  Immediately I
> > > started having issues.  First, the script was unable to install git,
> > > cmake, and other dependencies.  However, I was manually able to do a
> > > "sudo apt-get" on all of these packages and at least get to the point
> > > where the script tries to install UHD.
> > This is the first I've heard of it having problems doing the pre-req
> installs.  If
> > you run build-gnuradio with -v, you get more details about why.
> >    If the underlying OS tooling is falling over, there's very little that
> build-
> > gnuradio can do about it.  It has as much troubleshoot-and-repair
> >    ability as a moribund gnat.
> >
> > _______________________________________________
> > Discuss-gnuradio mailing list
> > Discuss-gnuradio@gnu.org
> > https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
>
>
> _______________________________________________
> Discuss-gnuradio mailing list
> Discuss-gnuradio@gnu.org
> https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
>
_______________________________________________
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Reply via email to