Posts

Showing posts with the label Ubuntu

Getting Started with OpenGL in Linux

Image
A brief and hopefully to the point on getting up and running with OpenGL in an Ubuntu Linux environment. For setting up OpenGL in Windows / Visual Studio environments, please see this post . My choice of integrated development environment for C++ development for this example is Netbeans 7.3.

Getting started with the Boost libraries in Ubuntu Linux

1. Install the Boost libraries from the command line First try the following $ sudo apt-get install libboost* You may get an error message similar to the following, like I did:

Getting started with Qt in Ubuntu Linux

Image
A quick recipe on how to get started with Qt in Ubuntu Linux using a simple example program. 1. Obtain QT4 Run these from the command line: [code language="text"] $ sudo apt-get update $ sudo apt-get install libqt4-dev qt4-qmake cmake r-base-dev libcurl4-gnutls-dev [/code]