How to install Doxygen GUI on Ubuntu? - doxygen

I can't figure out how to install the Doxygen GUI (doxywizard) on Ubuntu. Where can I get it?

In Debian the package is called doxygen-gui. It must be the same in Ubuntu, so try sudo apt-get install doxygen-gui.
Edit : apparently, doxygen-gui doesn't exist in Karmic. Try any other repo ? http://packages.ubuntu.com/search?keywords=doxygen-gui

apt-file search doxywizard
is a good way to answer this type of question, and leads directly to doxygen-gui.

I installed the older package from Jaunty on Karmic. I believe it was from this link: http://packages.ubuntu.com/en/jaunty/doxygen-gui YMMV.

Yes, and from what I've read it will become available again in Ubuntu Lucid Lynx , 10.04
(see: https://launchpad.net/ubuntu/+source/doxygen/1.6.2-0ubuntu1 )
Downloaded .deb-file from :
https:// launchpad.net/ubuntu/lucid/i386/doxygen-gui/1.6.2-1
But that needs some libqt4-xml version higher then the jaunty jackalope 9.10 repository .
Guess we'll have to wait a bit .

if you use eclipse there is a plugin called eclox which would do the trick.
(tested it in ubuntu 9.04)

Related

How I can open pgadmin4 in fedora 36?

Good evening people, I am trying to install pgadmin4 on fedora 36, I followed all the steps in the documentation and pgadmin4 and its dependencies were installed correctly but I do not know how to start it, or open it and it does not let me configure it on the web because I do not create the directory described in the final step to configure the web version.
I had the same problem. I solved it installing pgadmin4 from linux-pachages
https://linux-packages.com/fedora-36/package/pgadmin4-qtx86-64
I followed the same instructions but mistakenly changing "yum" to "dnf" out of force of habit. I found I got an install out of it which seemed OK at a glance, but it was just documentation and not an executable, and there was no shortcut added to run pgAdmin. Perhaps you might have inadvertently done something similar? After uninstalling, I tried again using "yum" exactly as documented and the latest executable installed without any issue. So the steps to install that would work for me were as follows. (Desktop version in my case.)
sudo rpm -e pgadmin4-fedora-repo
sudo rpm -i https://ftp.postgresql.org/pub/pgadmin/pgadmin4/yum/pgadmin4-fedora-repo-2-1.noarch.rpm
sudo yum install pgadmin4-desktop
The QT workaround also mentioned as an answer worked for me, but I wanted to avoid that since it is an earlier release (6.9) than the current 6.11, isn't officially supported and fires a warning about that every time on start up saying some functionality may be missing, which is not good for clients to see potentially in my case.
Same problem - couldn't open it after installing. You have to install pgadmin4-desktop not pgadmin4.

How to Install ROUGE In Ubuntu

Although there is good description of how to Set Up ROUGE evaluation , i could not get any place where the installation was described completely.
Basically, the trick is in the successful installation of the perl modules.
I am providing the download and installing links as well.
First Download ROUGE.
Install perl.
Install Synaptic Package manager for installing XML::DOM
libxml-dom-perl
The good thing is that synaptic package manager will install extra Perl modules that are required by XML::DOM. Many times people get stuck at how to install the XML::DOM.
Hope this helps. Any suggestions are welcomed.
You can also try the Java version of ROUGE if the perl version does not work. The documentation and download links can be found here: http://kavita-ganesan.com/content/rouge-2.0

Netbeans -- no error message but can't create a project

This error is driving me crazy for the past couple of hours. I'm using Ubuntu 12.04 LTS (clean install). What I did afterwards:
update everything
install JDK (using synaptics)
install netbeans (using synaptics, this is version 7.0.1)
I can start NetBeans just fine but I can't create any project. If I choose "New Project" it keeps saying "Please wait..." under "Categories".
I also tried installing versions of netbeans manually. Starting them as root ... nothing helps! :-(
Had the same problem and came across this answer with nice one line command to fix it:
sudo apt-get install openjdk-6-jre=6b24-1.11.1-4ubuntu2 openjdk-6-jre-headless=6b24-1.11.1-4ubuntu2 icedtea-6-jre-cacao=6b24-1.11.1-4ubuntu2
https://askubuntu.com/questions/326556/i-cant-start-a-new-project-on-netbeans
Okay, this is how I solved it:
Install Oracle's Java version: http://www.wikihow.com/Install-Oracle-Java-on-Ubuntu-Linux
Start Netbeans
The error only occurs if using the openjdk ...
To me the best option was, fully remove openjdk-6-jdk 6b27 and install:
sudo apt-get install openjdk-6-jdk=6b24-1.11.1-4ubuntu2 openjdk-6-jre=6b24-1.11.1-4ubuntu2 openjdk-6-jre-headless=6b24-1.11.1-4ubuntu2 icedtea-6-jre-cacao=6b24-1.11.1-4ubuntu2 icedtea-6-jre-jamvm=6b24-1.11.1-4ubuntu2
So the installed packages are the same as when no specific version is selected.

not able to find comerr-dev_2.1-1.41.12-1ubuntu2_i386.deb deian

I am trying to install php-5.2.8 in Ubuntu 10.10 but installation process does not have comerr-dev_2.1-1.41.12-1ubuntu2_i386.deb and stopping my php installation
alternative I tried installing comerr-dev_2.1-1.41.14-1ubuntu3_i386.deb and comerr-dev_2.1-1.41.12-4stable1_i386.deb but its not compatible .I need comerr-dev_2.1-1.41.12-1ubuntu2_i386.deb or source code so that i can build deb from that code.
help me out .thanks in advance
Please find the link to download comerr-dev_2.1-1.41.12-1ubuntu2_i386.deb straight from Launchpad.net (this is for Ubuntu Maverick).

using libcluttermm-1.0 problem

i have installed clutter-1.0 from gnome site using terminal.
But when i run the application, error is notified as libcluttermm-1.0 not found. Has this
library not available as of now. if not what is the alternative that i can use.
What did you install exactly? libcluttermm (C++ interface to Clutter) is provided by the cluttermm package. On my Fedora system, I ran:
# yum install cluttermm
# locate libcluttermm
/usr/lib/libcluttermm-1.0.so.0
/usr/lib/libcluttermm-1.0.so.0.0.0
Of course, if you are doing development against it install cluttermm-devel instead.
Use libclutter instead, as libcluttermm is not in Ubuntu repositories.