LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 10-29-2005, 02:57 PM   #1
M O L8ingN2dust
Member
 
Registered: Mar 2005
Location: The People's Republic of Lumps in my Oatmeal!
Distribution: Mepis 3.2.1-1
Posts: 104

Rep: Reputation: 15
Problems with Nicotine SoulSeek Client


Hi, I have recently installed nicotine soulseek client, and I am not having any luck getting it to work. I installed it through RPM Drake, so all the dependencies were satisfied automatically. The problem is when I launch it, it just thinks for a long time, and then shuts down. Soulseek is one of the programs from windows that I really miss, so I was wondering if somebody could help me get this working...
 
Old 10-29-2005, 03:05 PM   #2
downfall
Member
 
Registered: Dec 2004
Location: Victoria, BC, Canada
Distribution: Gentoo
Posts: 37

Rep: Reputation: 15
Have you run the program in a terminal? If not, I suggest doing so, and post the output, if there is any (hopefully there will be, a lot of graphical programs are lazy and don't give any diags).
 
Old 10-29-2005, 03:15 PM   #3
M O L8ingN2dust
Member
 
Registered: Mar 2005
Location: The People's Republic of Lumps in my Oatmeal!
Distribution: Mepis 3.2.1-1
Posts: 104

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by downfall
Have you run the program in a terminal? If not, I suggest doing so, and post the output, if there is any (hopefully there will be, a lot of graphical programs are lazy and don't give any diags).
ok, it says cannot find the required pygtk and then lists a bunch of search paths...



Last edited by M O L8ingN2dust; 10-29-2005 at 03:17 PM.
 
Old 10-29-2005, 03:21 PM   #4
downfall
Member
 
Registered: Dec 2004
Location: Victoria, BC, Canada
Distribution: Gentoo
Posts: 37

Rep: Reputation: 15
Does the output/paths help at all? If not, copy the full output and post it.
 
Old 10-29-2005, 03:26 PM   #5
M O L8ingN2dust
Member
 
Registered: Mar 2005
Location: The People's Republic of Lumps in my Oatmeal!
Distribution: Mepis 3.2.1-1
Posts: 104

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by downfall
Does the output/paths help at all? If not, copy the full output and post it.
Not really since I am still working on my skills with the console. I am pretty sure that PYGTK was listed as being installed as one of the dependencies, so I am at a loss for why it is even complaining. It doesn't like where it was installed to maybe?

Here is the output:

Can not find required PyGTK. The current search path is
['/usr/bin', '/usr/lib/python24.zip', '/usr/lib/python2.4', '/usr/lib/python2.4/plat-linux2', '/usr/lib/python2.4/lib-tk', '/usr/lib/python2.4/lib-dynload', '/usr/lib/python2.4/site-packages']
 
Old 10-29-2005, 03:37 PM   #6
M O L8ingN2dust
Member
 
Registered: Mar 2005
Location: The People's Republic of Lumps in my Oatmeal!
Distribution: Mepis 3.2.1-1
Posts: 104

Original Poster
Rep: Reputation: 15
Maybe I should try installing PyGTK again... that might work...

*edit* Okay, I installed PyGTK, and now it has a different output error message...

Traceback (most recent call last):
File "/usr/bin/nicotine", line 142, in ?
result = checkenv()
File "/usr/bin/nicotine", line 68, in checkenv
import gtk
File "/home/fcrozat/rpm/tmp/pygtk2.0-2.4.1-root/usr/lib/python2.4/site-packages/gtk-2.0/gtk/__init__.py", line 33, in ?
ImportError: /usr/lib/python2.4/site-packages/gtk-2.0/gobject.so: undefined symbol: g_assert_warning

Now I have no clue what that means...

Last edited by M O L8ingN2dust; 10-29-2005 at 03:40 PM.
 
Old 10-29-2005, 03:38 PM   #7
downfall
Member
 
Registered: Dec 2004
Location: Victoria, BC, Canada
Distribution: Gentoo
Posts: 37

Rep: Reputation: 15
Well, my suggestion at this point is that you find your PyGTK installation. Use slocate to find it:

Code:
/* One of these should work */
slocate PyGTK
slocate pygtk
slocate py
Given that you have slocate installed of course, lol. If not, use your package manager to install it, and then create a database for it

Code:
slocate -u
and THEN use slocate to find your installation. At that point you can just make a symbolic link from that folder to one of the search paths

Code:
ln -sn $whatever_the_path_slocate_finds/ /usr/lib/python2.4/
at which point you should (hopefully) be laughing.
 
Old 10-29-2005, 03:40 PM   #8
downfall
Member
 
Registered: Dec 2004
Location: Victoria, BC, Canada
Distribution: Gentoo
Posts: 37

Rep: Reputation: 15
Quote:
Maybe I should try installing PyGTK again... that might work...
*shrugs* dunno. If it works, let me know, lol.
 
Old 10-29-2005, 03:42 PM   #9
M O L8ingN2dust
Member
 
Registered: Mar 2005
Location: The People's Republic of Lumps in my Oatmeal!
Distribution: Mepis 3.2.1-1
Posts: 104

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by downfall
Well, my suggestion at this point is that you find your PyGTK installation. Use slocate to find it:

Code:
/* One of these should work */
slocate PyGTK
slocate pygtk
slocate py
Given that you have slocate installed of course, lol. If not, use your package manager to install it, and then create a database for it

Code:
slocate -u
and THEN use slocate to find your installation. At that point you can just make a symbolic link from that folder to one of the search paths

Code:
ln -sn $whatever_the_path_slocate_finds/ /usr/lib/python2.4/
at which point you should (hopefully) be laughing.
See above post... I guess it found it, after reinstalling, but now it has some other problem/... Fussy little program isn't it! Just for kicks I ran slocate and it came up with this:

warning: slocate: could not open database: /var/lib/slocate/slocate.db: No such file or directory
warning: You need to run the 'updatedb' command (as root) to create the database.

Last edited by M O L8ingN2dust; 10-29-2005 at 03:43 PM.
 
Old 10-29-2005, 03:43 PM   #10
downfall
Member
 
Registered: Dec 2004
Location: Victoria, BC, Canada
Distribution: Gentoo
Posts: 37

Rep: Reputation: 15
Quote:
*edit* Okay, I installed PyGTK, and now it has a different output error message...

Traceback (most recent call last):
File "/usr/bin/nicotine", line 142, in ?
result = checkenv()
File "/usr/bin/nicotine", line 68, in checkenv
import gtk
File "/home/fcrozat/rpm/tmp/pygtk2.0-2.4.1-root/usr/lib/python2.4/site-packages/gtk-2.0/gtk/__init__.py", line 33, in ?
ImportError: /usr/lib/python2.4/site-packages/gtk-2.0/gobject.so: undefined symbol: g_assert_warning

Now I have no clue what that means...
Yeah, neither do I. The solution seemed so simple before. It looks to me like a problem I would generally avoid having compiled all my software. Plug it into google? No clue.
 
Old 10-29-2005, 03:45 PM   #11
downfall
Member
 
Registered: Dec 2004
Location: Victoria, BC, Canada
Distribution: Gentoo
Posts: 37

Rep: Reputation: 15
Quote:
Just for kicks I ran slocate and it came up with this:

warning: slocate: could not open database: /var/lib/slocate/slocate.db: No such file or directory
warning: You need to run the 'updatedb' command (as root) to create the database.
Odd. Did you run

Code:
slocate -u
...?
 
Old 10-29-2005, 03:47 PM   #12
M O L8ingN2dust
Member
 
Registered: Mar 2005
Location: The People's Republic of Lumps in my Oatmeal!
Distribution: Mepis 3.2.1-1
Posts: 104

Original Poster
Rep: Reputation: 15
well, thanks anyway... I have had nothing but trouble with these soulseek clients. I ave tried to install them several times, and they NEVER work. Such a pain. But I refuse to run windows as a matter of principle...
 
Old 10-29-2005, 03:50 PM   #13
M O L8ingN2dust
Member
 
Registered: Mar 2005
Location: The People's Republic of Lumps in my Oatmeal!
Distribution: Mepis 3.2.1-1
Posts: 104

Original Poster
Rep: Reputation: 15
I just ran the database (it made me sign in as root) and it did something, though I am not sure what because now when I run slocate, it does nothing. No output, nothing.

*edit* Okay, I just tried it again (not as root this time) and it came up with a crapload of paths!!!!!!!

Last edited by M O L8ingN2dust; 10-29-2005 at 03:51 PM.
 
Old 10-29-2005, 03:50 PM   #14
downfall
Member
 
Registered: Dec 2004
Location: Victoria, BC, Canada
Distribution: Gentoo
Posts: 37

Rep: Reputation: 15
I know how you feel. I could never get GiFT to work quite properly, which is similar. My suggestion, is keep trying. Another suggestion would be to try a different distro, or at least a different package manager (RPMs aren't the most elegant solution to software management).
 
Old 10-29-2005, 03:52 PM   #15
downfall
Member
 
Registered: Dec 2004
Location: Victoria, BC, Canada
Distribution: Gentoo
Posts: 37

Rep: Reputation: 15
Quote:
I just ran the database (it made me sign in as root) and it did something, though I am not sure what because now when I run slocate, it does nothing. No output, nothing.
Crazy shiz.

Code:
slocate -u
should create the database, and then

Code:
slocate <arg>
should yield a result, given that it (<arg>) exists in the database.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Adding Gtk-2 themes (for Nicotine --soulseek client) flamesrock Linux - Software 3 10-07-2006 01:27 PM
Problems installing Nicotine drxsmurf Linux - Software 2 05-27-2004 01:39 PM
Having problems with compiling gtk, nicotine? try this domo2505 Linux - Software 13 05-16-2004 02:24 PM
migrating from soulseek (winME) to nicotine (suse) MasterControl Linux - Software 1 02-03-2004 02:47 AM
Problems installing Nicotine drxsmurf Linux - Software 3 10-20-2003 04:43 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 02:57 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration