• Updated 2023-07-12: Hello, Guest! Welcome back, and be sure to check out this follow-up post about our outage a week or so ago.

How to install Python packages on eMac with 10.5.8?

1200XL M.U.L.E.

Well-known member
I want to install Python on my eMac and some packages like NumPy, Matplotlib, etc.

Installing the Python package was easy. I downloaded v3.5.4 from python.org. With some help from Google, I was able to get pip installed. I have pip and pip3 running, it seems.

However, I cannot install any packages on the machine. My attempts to install NumPy bonk out with error code 1. The process seemingly cannot get the underlying libraries NumPy depends on. I think it’s because of a security certificate issue.

Is there any way I can make this work or am I out of luck here?

Thanks!
 

halkyardo

Well-known member
I want to install Python on my eMac and some packages like NumPy, Matplotlib, etc.

Installing the Python package was easy. I downloaded v3.5.4 from python.org. With some help from Google, I was able to get pip installed. I have pip and pip3 running, it seems.

However, I cannot install any packages on the machine. My attempts to install NumPy bonk out with error code 1. The process seemingly cannot get the underlying libraries NumPy depends on. I think it’s because of a security certificate issue.

Is there any way I can make this work or am I out of luck here?

Thanks!
It's been a while since I messed with this, but I think you'll have better luck installing Python through MacPorts - this gets around the certificate issues by bundling a newer version of OpenSSL. The unfortunate thing is that MacPorts does not have binary packages for older OSes, so the install process has to build everything from source, which can take days on an old machine like that.
 
Top