[issue18092] Python 2.7.5 installation broken on OpenSuse 12.2

2020-02-11 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> duplicate
stage:  -> resolved
status: open -> closed
superseder:  -> Problems with /usr/lib64 builds.

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18092] Python 2.7.5 installation broken on OpenSuse 12.2

2013-10-01 Thread Tom Gross

Tom Gross added the comment:

I guess you are on a 64bit os an the issue is a variant of issue1294959. Some 
of the components (scripts) are installed in the $PREFIX/lib folder and some 
are (libs) installed in the $PREFIX/lib64 folder. a workaround which worked for 
me (on OpenSuse 12.3 which faced the same issue) is specifying a lib directory 
on configure like this:

 ./configure --prefix=/opt/Python275 --libdir=/opt/Python275/lib

All components (scripts  libs) are in the $PREFIX/lib folder then.

--
nosy: +Tom.Gross

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18092
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18092] Python 2.7.5 installation broken on OpenSuse 12.2

2013-05-29 Thread Andreas Jung

Changes by Andreas Jung zopyxfil...@gmail.com:


--
components: +Build

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18092
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18092] Python 2.7.5 installation broken on OpenSuse 12.2

2013-05-29 Thread Andreas Jung

New submission from Andreas Jung:

I tried to install 2.7.5 on my OpenSuse 12.2 (latest patches)

ajung@blackmoon2:~/sandboxes/mib.portal cat /etc/issue
Welcome to openSUSE 12.2 Mantis - Kernel \r (\l).


Compilation went fine (no visible errors).

Starting the interpreter gives me:

ajung@blackmoon2:~/sandboxes/mib.portal /opt/python-2.7.5/bin/python 
Could not find platform dependent libraries exec_prefix
Consider setting $PYTHONHOME to prefix[:exec_prefix]
Python 2.7.5 (default, May 29 2013, 08:19:10) 
[GCC 4.7.1 20120723 [gcc-4_7-branch revision 189773]] on linux2
Type help, copyright, credits or license for more information.
 

Trying to bootstrap a Pyramid project using zc.buildout gives me:

ajung@blackmoon2:~/sandboxes/mib.portal /opt/python-2.7.5/bin/python 
bootstrap.py 
Could not find platform dependent libraries exec_prefix
Consider setting $PYTHONHOME to prefix[:exec_prefix]
Traceback (most recent call last):
  File bootstrap.py, line 21, in module
import os, shutil, sys, tempfile, urllib, urllib2, subprocess
  File /opt/python-2.7.5/lib/python2.7/shutil.py, line 12, in module
import collections
  File /opt/python-2.7.5/lib/python2.7/collections.py, line 8, in module
from _collections import deque, defaultdict
ImportError: No module named _collections

--
messages: 190274
nosy: Andreas.Jung
priority: normal
severity: normal
status: open
title: Python 2.7.5 installation broken on OpenSuse 12.2
type: behavior
versions: Python 2.7

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18092
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue18092] Python 2.7.5 installation broken on OpenSuse 12.2

2013-05-29 Thread Ned Deily

Ned Deily added the comment:

Without more information, it is difficult to guess what is going wrong.  Please 
provide exactly what ./configure options you used to build Python and any make 
install options.  When you start Python, what values do sys.prefix, 
sys.exec_prefix, and sys.path have?  Does python -E give any different 
results?

--
nosy: +ned.deily

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue18092
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com