FET Forum

FET Support (English) => General Stuff => Topic started by: hugobelisario on January 07, 2013, 04:45:27 PM

Title: Installing FET on Linux/Ubuntu
Post by: hugobelisario on January 07, 2013, 04:45:27 PM
Helo,

How to install the FET on Ubuntu 12.04.

Hugo Belisário
Title: Re: Installing FET on Linux/Ubuntu
Post by: Liviu Lalescu on January 07, 2013, 05:14:32 PM
See the README file. Install Qt libs and devel with package manager (maybe named libqt4), then qmake, then make.
Title: Re: Installing FET on Linux/Ubuntu
Post by: k1aas on August 29, 2013, 05:08:23 PM
I'm a bit confused that some of the required files are not available for Ubuntu 12.04 LTS:

Required by FET 5.19.4                         Available for Ubuntu 12.04
make 3.82 or similar                      make 3.81  (latest version according to Synaptic)
g++ 4.7.2 or similar                      g++ 4.6.3  (latest version according to Synaptic)

Any idea how to solve these conflicts?

Title: Re: Installing FET on Linux/Ubuntu
Post by: Liviu Lalescu on August 29, 2013, 05:13:18 PM
Probably Ubuntu packers are a bit lazy. But that does not matter, even these versions should work perfectly.

In fact, the latest gcc version is 4.8.1 (http://gcc.gnu.org), but I neglected to update on my computer.
Title: Re: Installing FET on Linux/Ubuntu
Post by: Fernando Poblete on February 18, 2016, 11:18:09 PM
If someone has issues installing Fet 5.28 due to lack of qt 5.5.1, you can use this command without quotes "sudo apt-get install qt5-default". Regards.
Title: Re: Installing FET on Linux/Ubuntu
Post by: Liviu Lalescu on February 19, 2016, 03:06:23 AM
Thank you! I added this in the README file.
Title: Re: Installing FET on Linux/Ubuntu
Post by: Volker Dirr on February 21, 2016, 05:42:35 PM
hmmm.. Maybe i misunderstood, but the last hint doesn't look fine : "sudo apt-get install qt5-default"
It might be critical, since it sound like you didn't installed qt correct.
I think it is critical because of this:
You downloaded and installed qt (*).
You compiled FET with that version.
Now you can't install or run FET. This is a sign you didn't installed qt correct. Maybe just missing PATH.
You solved it by installing qt5-default (**).

So you compiled with an other qt version then you run it.
Qt guys try to keep the versions compatible with other versions. But they can't always recommend that.

So that hint looks like a (bad?!) workaround. It might work, but it might fail also. I recommend to install qt correct instead of installing 2 different versions.
Title: Re: Installing FET on Linux/Ubuntu
Post by: Liviu Lalescu on February 21, 2016, 05:46:07 PM
Volker, I think he meant "compiling FET", not "installing FET".
Title: Re: Installing FET on Linux/Ubuntu
Post by: Volker Dirr on February 21, 2016, 06:34:39 PM
if he mean compiling (and also installed the other qt stuff by apt-get command), then it is of course correct to do that. In fact in that case it is a Ubuntu dependency checker bug. (Or did you/he negate to install depended packages?)
Title: Re: Installing FET on Linux/Ubuntu
Post by: Liviu Lalescu on February 21, 2016, 06:43:03 PM
Quote from: Volker Dirr on February 21, 2016, 06:34:39 PM
if he mean compiling (and also installed the other qt stuff by apt-get command), then it is of course correct to do that. In fact in that case it is a Ubuntu dependency checker bug. (Or did you/he negate to install depended packages?)

I think he means all a user needs to do to compile FET on Ubuntu is "sudo apt-get install qt5-default".
Title: Re: Installing FET on Linux/Ubuntu
Post by: Fernando Poblete on April 06, 2016, 07:33:38 AM
Liviu. You're right. I meant "compiling" in my above post.  :P

Another tip is, if at make install you get the "make: *** No hay ninguna regla para construir el objetivo `install'. Alto." error (something like "There are no rules to build the target 'install'. Stop.", you have to install g++ compiler "sudo apt-get install g++". Better, install build-essential, "sudo apt-get install build-essential".
   
It includes build libraries commonly used, rather than just g++, but if all you need is the g++ compiler, then installing g++ is enough.
Title: Re: Installing FET on Linux/Ubuntu
Post by: Liviu Lalescu on April 06, 2016, 09:47:37 AM
OK, I added your words in the README file, attached if you want to check it (search Ubuntu - 2/3 appearance in the file).