Installing Qucs on Ubuntu

Qucs is a free circuit simulator for Windows, Linux and Mac. It comes complete with a schematic editor, project manager and other useful tools.
Qucs is very easy to use and support the standard DC, AC, Parameter Sweep, Transient, digital and other simulations, it also includes a selection of popular component models.
Qucs can display the simulation data in a number of ways such as Cartesian Plot, Polar, Tabular, Smith Chart, Timing Diagram and Truth Table.

Installing

First open the terminal and type the following:

cd ~
wget -t5 http://downloads.sourceforge.net/project/qucs/qucs/0.0.15/qucs-0.0.15.tar.gz?use_mirror=kent

This is download the latest version of Qucs, once that is done you will need to extract it:

tar -xvzf qucs-0.0.15.tar.gz

If you want to delete the Qucs source archive you can do so by using this, if not skip this next command.

rm qucs-0.0.15.tar.gz

Now you need to move the folder to where you want to compile it, if you don’t mind it being in your home folder skip this:

sudo mv qucs-0.0.15 /usr/src
cd /usr/src/qucs-0.0.15

Next move into the folder and download the dependencies required to compile Qucs:

cd qucs-0.0.15
sudo apt-get install libqt3-headers

Finally you can compile Qucs:

./configure
make
sudo make install

Once this is done (hopefully without any errors) you can run Qucs simply by typing:

qucs

That’s all, although I’d suggest adding a shortcut to your menu.

Advertisement

2 Responses to Installing Qucs on Ubuntu

  1. Richard Chin says:

    Hi,
    Thank you very much for this post!! I am a complete newbie to linux/ubuntu. I was able to follow your instructions and it worked up to the ./configure. However while trying different things I got a message “The program ‘qucs’ is currently not installed. You can install it by typing:
    sudo apt-get install qucs” I typed the command and BINGO! It compiled and the ‘qucs’ now runs the program. Now all I have to do is figure out how to make a short cut! LOL Thanks a million!!

    • chryseus8086 says:

      If ./configure did not work you are probably missing a library.
      Using ‘sudo apt-get install qucs’ fetches the version from the ubuntu repository.

      While the version from the ubuntu repo works just fine it is slightly out of date, the reason I wrote this tutorial is so you can compile the latest version from source.

      Should you need any help you can contact me via MSN messenger: Chryseus8086@hotmail.co.uk

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.