Re: problems installing python 2.2.2 on solaris 8

Laura Creighton <[email protected]> Fri, 10 Jan 2003 07:55:39 +0100
Newsgroups gmane.comp.python.snake-farm.user
Message-ID <[email protected]>
Aha, somebody else had a permission  problem, so even if it isn't
John Bernhardt's problem, we should document it.

Laura

------- Forwarded Message
From: [email protected] (Holden Caulfield)
Newsgroups: comp.lang.python
Subject: Re: problems installing python 2.2.2 on solaris 8
Organization: http://groups.google.com/

"John Bernhardt" <[email protected]> wrote in message news:<[email protected]>...
> I'm trying to get Python 2.2.2 installed on a solaris 8 SPARC system
> and have run into a problem that I need some help resolving.  On this
> system, I can successfully compile Python and the compiled version
> passes all of the tests run by 'make test'.  However, when I do a
> make install, there are quite a few modules that do not get copied
> into /usr/local/lib/python2.2 including the socket and time modules;
> more I'm sure, but my scripts fail on loading smtplib because those
> two modules are not installed.
> 
> Any clues?

I had the same problem. For some reason, the dynamic modules permissions are
not changed when installing (at least that was my problem).
check the lib-dynload subdirectory and make sure that the permissions of the
".so" files are 644, in my case they were 600, which caused the failure to
load.
- -- 
http://mail.python.org/mailman/listinfo/python-list

------- End of Forwarded Message