[Fedora] Codelite not launching
-
- CodeLite Curious
- Posts: 5
- Joined: Fri Jan 31, 2014 11:58 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
[Fedora] Codelite not launching
I am currently running Fedora 20 (64 bits) with Gnome 3 interface and as mentioned, I downloaded the corresponding RPM (for Fedora 20 x86_64). Then, I installed the package successfully, but now, when I try to start the program in the Applications screen, the program just won't start at all (no error, just nothing happenening). I also tried to install it with the two commands provided, but still nothing. Can someone explain me how to install it step-by-step in Fedora or try to troobleshoot my problem? Thanks a lot.
Here is the link (for the commands and the RPMs): http://codelite.org/LiteEditor/Repositories#toc2
Here is the link (for the commands and the RPMs): http://codelite.org/LiteEditor/Repositories#toc2
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: [Fedora] Codelite not launching
What happens when you install it from a terminal?
do this:
Eran
do this:
Code: Select all
tail -f ~/.codelite/codelite-stdout-stderr.log&
codelite &
Make sure you have read the HOW TO POST thread
-
- CodeLite Curious
- Posts: 5
- Joined: Fri Jan 31, 2014 11:58 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: [Fedora] Codelite not launching
It is working fine and it is installing successfully (I get the confirmation at the end). However, when I type your command, it says that I have "No such file or directory".
Last edited by Golitan11 on Sat Feb 01, 2014 1:10 am, edited 1 time in total.
-
- CodeLite Plugin
- Posts: 819
- Joined: Wed Sep 03, 2008 7:26 pm
- Contact:
Re: [Fedora] Codelite not launching
Hi,
If so, the package itself must be OK. Presumably then it's the gnome menu that has the problem.
You could try removing Codelite, either using your package manager, or direct with (as superuser):
Then reinstall it. Maybe gnome will get it right the second time.
Regards,
David
You mean, CodeLite runs successfully from the terminal? And the 'About' box says 5.4, not an old version?It is working fine and it installing successfully
If so, the package itself must be OK. Presumably then it's the gnome menu that has the problem.
You could try removing Codelite, either using your package manager, or direct with (as superuser):
Code: Select all
rpm -e $(rpm -qa codelite\*)
Regards,
David
-
- CodeLite Curious
- Posts: 5
- Joined: Fri Jan 31, 2014 11:58 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: [Fedora] Codelite not launching
No I mean that it is installing successfully from the terminal, but it is still not launching. I alreay tried to uninstall it (using yum however), and it is doing the same thing. I have tried to install other programs and those are launching and working great, which is really weird. Is there any way to launch the program via the console, or Gnome will still not be able to launch it?
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: [Fedora] Codelite not launching
I am no rpm expert, but do you have any equivalent? to give you a hint about what was installed and where?
Eran
Code: Select all
dpkg -L codelite
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Plugin
- Posts: 819
- Joined: Wed Sep 03, 2008 7:26 pm
- Contact:
Re: [Fedora] Codelite not launching
I see.
First, is it really installed? What happens if you, in a terminal, type codelite ? Does it launch, or fail with an instructive error message?
If the fail message is "command not found", what is the output of doing ls -al /usr/bin/codelite ?
First, is it really installed? What happens if you, in a terminal, type codelite ? Does it launch, or fail with an instructive error message?
If the fail message is "command not found", what is the output of doing ls -al /usr/bin/codelite ?
-
- CodeLite Curious
- Posts: 5
- Joined: Fri Jan 31, 2014 11:58 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: [Fedora] Codelite not launching
When I type "codelite" in the terminal, I get this message: "codelite: error while loading shared libraries: libssh.so.4: cannot open shared object file: No such file or directory".
When I type "ls -al /usr/bin/codelite", I get this message: "-rwxr-xr-x. 1 root root 6245504 12 jan 17:33 /usr/bin/codelite".
When I type "ls -al /usr/bin/codelite", I get this message: "-rwxr-xr-x. 1 root root 6245504 12 jan 17:33 /usr/bin/codelite".
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: [Fedora] Codelite not launching
On ubuntu/debian this is fixed by installing the libssh-dev package
Try installing the fedora equivalent?
Eran
Try installing the fedora equivalent?
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Curious
- Posts: 5
- Joined: Fri Jan 31, 2014 11:58 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: [Fedora] Codelite not launching
Thanks it is working! I installed "libssh" with yum command and it worked ("sudo yum install libssh"). However, "libssh-dev" didn't work (found nothing to install with this name). I also installed gcc and g++ compilers manually to be able to build my projects ("sudo yum install gcc" and "sudo yum install gcc-c++").