This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Problem in installation of version 2.3.5 on mac OS X 10.5.8
Type: Stage: resolved
Components: Installation Versions:
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: ned.deily, pitrou, rampythonnewbie
Priority: normal Keywords:

Created on 2012-04-27 09:31 by rampythonnewbie, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg159446 - (view) Author: rampythonnewbie (rampythonnewbie) Date: 2012-04-27 09:31
Hello,

I am working on an application that runs only on Python version 2.3.5.  Presently i am using mac os x 10.5.8. It came with pre-installed python 2.5.1. Now, when i am running that application with existing version, it is showing the following error..

"RuntimeWarning: Python C API version mismatch for module _AE: This Python has API version 1013, module _AE has version 1012."

So, I want to install version 2.3.5 on my machine along with existing python 2.5.1 unchanged.

I tried the following procedure to install:

1. Downloaded  "Python-2.3.5.tgz" from www.python.org
2. Unpacked it with "tar -zxvf Python-2.3.5.tgz" command.
3. ./configure --prefix=/users/myhomedir/python23
4. make altinstall

But, I am getting following error:

"gcc  -u __dummy -u _PyMac_Error -framework System -framework CoreServices -framework Foundation -o python.exe \
			Modules/python.o \
			libpython2.3.a -ldl      
Undefined symbols:
  "__dummy", referenced from:
ld: symbol(s) not found
collect2: ld returned 1 exit status
make: *** [python.exe] Error 1"


Please help me to know how to install multiple versions of python on mac OS X 10.5 without using macports and virtualenv...

Thanks in advance
msg159453 - (view) Author: rampythonnewbie (rampythonnewbie) Date: 2012-04-27 12:58
Hello,

I am working on an application that runs only on Python version 2.3.5.  Presently i am using mac os x 10.5.8. It came with pre-installed python 2.5.1. Now, when i am running that application with existing version, it is showing the following error..

"RuntimeWarning: Python C API version mismatch for module _AE: This Python has API version 1013, module _AE has version 1012."

So, I want to install version 2.3.5 on my machine along with existing python 2.5.1 unchanged.

I tried the following procedure to install:

1. Downloaded  "Python-2.3.5.tgz" from www.python.org
2. Unpacked it with "tar -zxvf Python-2.3.5.tgz" command.
3. ./configure --prefix=/users/myhomedir/python23
4. make altinstall

But, I am getting following error:

"gcc  -u __dummy -u _PyMac_Error -framework System -framework CoreServices -framework Foundation -o python.exe \
			Modules/python.o \
			libpython2.3.a -ldl      
Undefined symbols:
  "__dummy", referenced from:
ld: symbol(s) not found
collect2: ld returned 1 exit status
make: *** [python.exe] Error 1"


Please help me to know how to install multiple versions of python on mac OS X 10.5 without using macports and virtualenv...

Thanks in advance
msg159457 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012-04-27 14:12
Both 2.3.5 and 2.5.1 are very old versions, and are unsupported. We would only take bug reports for Python 2.7 and 3.2.
Furthermore, it is not obvious that you are actually reporting a bug; it sounds like you're looking for help instead, which can be asked for on http://mail.python.org/pipermail/python-list/
History
Date User Action Args
2022-04-11 14:57:29adminsetgithub: 58886
2012-04-27 14:12:47pitrousetstatus: open -> closed

nosy: + pitrou, ned.deily
messages: + msg159457

resolution: out of date
stage: resolved
2012-04-27 12:58:54rampythonnewbiesetmessages: + msg159453
components: + Installation
2012-04-27 09:31:37rampythonnewbiecreate