How to install QtRuby + Qt4 on Ubuntu 14?

user6333552

I wish to program in ruby in QtCreator. If I'm right, I need to install QtRuby + Qt4, but with no success on Ubuntu 14. How to do? Thanks!

Sinscary

Follow these steps to install Qtruby+Qt4

run following command in terminal

sudo aptitude install libqt4-core libqt4-dev

Download qtruby from http://rubyforge.org/projects/korundum/

version=2.1.0
wget http://rubyforge.org/frs/download.php/71843/qt4-qtruby-${version}.tar.gz

Extract qtruby

tar -xvzf qt4-qtruby-${version}.tar.gz
cd qt4-qtruby-${version}

qtruby installer uses the location of the Ruby binary it is started with

rvm use 1.8.7
cmake .
make

Now install,

sudo make install

ubuntu doesn't look here by default, but the qtruby install puts its libraries here

sudo ldconfig /usr/local/lib

We had to run make install with root because it writes to /usr/local/lib, but it also writes to $MY_RUBY_HOME.

we don't want root-owned files floating around in there

sudo chown -R $USER:$USER $MY_RUBY_HOME

NOTE - For more information please have a look at rvm documentation

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to install uTorrent 14 + Ubuntu

From Dev

how to install mariasql with nodejs 4.x on ubuntu 14?

From Dev

Does QtRuby work with Qt 5?

From Dev

How to install git-flow 1.9.1 AVH in Ubuntu 14?

From Dev

How to install x-debug and verify in ubuntu 14

From Dev

How to install Netbeans 8.0.2 on ubuntu 14.x

From Dev

How to install Windows 7 in a PC running Ubuntu 14?

From Dev

How do I install Muvizu on Ubuntu 14,04 LTS?

From Dev

How to install gitolite3 on ubuntu server LTS 14

From Dev

How to create a local repository for HDP install on Ubuntu14?

From Dev

How to install DR14 T.meter on Ubuntu 19.10

From Dev

How to install Dropbox on Ubuntu 14 Server [GUI-less]?

From Dev

Stuck without Qt4 in Ubuntu 20.04

From Dev

Java Install Fails On Ubuntu 14

From Dev

How to sort QTableView in Qt4 and up

From Dev

Install Ubuntu on Dell Inspiron 14 7490

From Dev

Install Ubuntu on Dell Inspiron 14 7490

From Dev

Install Ubuntu 14 alongside Fedora 21

From Dev

failure to install many commands in ubuntu-14

From Dev

Install Ubuntu 14 LTS next to windows 10

From Dev

How to install sni-qt in Ubuntu 19.10?

From Dev

How do I install Ubuntu 14 with UEFI and software raid0 on GPT SDDs

From Dev

How can I install Broadcom Wireless Adapter BCM4352 802.11ac PCID [14e4:43b1] (rev 03) on Ubuntu 18.04.3 LTS?

From Dev

how to get model/view working for table using qtruby?

From Dev

Is it possible to install qt4 without installing qt4-doc?

From Dev

Is it possible to install qt4 without installing qt4-doc?

From Dev

How to install Ubuntu Touch on an iphone 4?

From Dev

How to install pgAdmin 4 in desktop mode on Ubuntu

From Dev

how to install Neo 4j in ubuntu

Related Related

HotTag

Archive