Tagged Questions
25
votes
11answers
22k views
Installing Python Imaging Library (PIL) on Snow Leopard with updated Python 2.6.2
I have a fresh install (started with a wiped drive) of Snow Leopard with the developer tools installed during the Snow Leopard installation. I then installed Python 2.6.2, replacing the Snow Leopard ...
17
votes
3answers
7k views
Python: MySQLdb and “Library not loaded: libmysqlclient.16.dylib”
The setup...
Trying to set up a clean Mac os X 10.6 install to develop python/django and I didn't remember running into this on 10.5.
After installing MySQL from the installer on ...
12
votes
7answers
6k views
Compile Matplotlib for Python on Snow Leopard
I've killed half a day trying to compile matplotlib for python on Snow Leopard. I've used the googles and found this helpful page (http://blog.hyperjeff.net/?p=160) but I still can't get it to ...
12
votes
4answers
4k views
How do I determine if my python shell is executing in 32bit or 64bit mode?
I need a way to tell what mode the shell is in from within the shell.
I've tried looking at the platform module but it seems only to tell you about "about the bit architecture and the linkage ...
11
votes
4answers
10k views
How do I force Python to be 32-bit on Snow Leopard and other 32-bit/64-bit questions
When I run the following from a bash shell on my Mac:
$ file /usr/bin/python
I get the following three lines:
/usr/bin/python (for architecture x86_64): Mach-O 64-bit executable x86_64
...
11
votes
6answers
4k views
PyObjc and Cocoa on Snow Leopard
I am about to start my A-Level Computing project (High School Level) which will hopefully be a point-of-sale application for Mac OS. Unfortunately, Objective-C is a little out of my league at the ...
10
votes
5answers
11k views
Installing Mercurial on Mac OS X 10.6 Snow Leopard
Installing Mercurial on Mac OS X 10.6 Snow Leopard
I installed Mercurial 1.3.1 on Mac OS X 10.6 Snow Leopard from source using the following:
cd ~/src
curl -O ...
9
votes
5answers
7k views
Python version shipping with Mac OS X Snow Leopard?
I would appreciate it if somebody running the final version of Snow Leopard could post what version of Python is included with the OS (on a Terminal, just type "python --version")
Thanks!
8
votes
0answers
676 views
Install pycurl on Mac OSX Snow Leopard [closed]
After hours of reading on the internet I found the easiest solution to install pycurl on mac os x.
Make sure you have Xcode UNIX tool installed and run this command.
sudo env ARCHFLAGS="-arch ...
8
votes
3answers
7k views
Django + MySQL on Mac OS 10.6.2 Snow Leopard
There were some excellent answers to this question already, however, they are now outdated.
I've been able to get the module installed, but "python manage.py runserver" fails with
iMac:myproject ...
7
votes
3answers
1k views
Good looking Python GUI toolkit for Snow Leopard(64 bit)
I'm looking for a GUI toolkit/framework to create applications that run on Mac Snow Leopard and preferably other systems(Windows, Linux).
Deal breakers:
X11 based
Non-native widgets
32 bit/Carbon
...
7
votes
3answers
1k views
IPython doesn't work in Django shell
I've just recently switched over to using 64-bit Python 2.6.1 on Mac OS X 10.6 (Snow Leopard). IPython won't work with Django anymore, but IPython works from the command-line.
The error says:
...
6
votes
2answers
648 views
Compiling vim with Python3 (installed via Homebrew) support?
I have python3 installed via homebrew: brew install python3 --framework
I have the vim source (7.3) downloaded in /usr/src
I run:
./configure --prefix=/usr/local --enable-rubyinterp ...
6
votes
5answers
412 views
Installing psyco for python on Snow Leopard
I'm having some trouble installing psyco on my Macbook pro running Snow Leopard with python 2.6.1.
I've been trying to force python to run in 32-bit mode using the command
defaults write ...
6
votes
7answers
4k views
Install mysqldb on snow leopard
I am trying to get started on working with Python on Django I am by profession a PHP developer and have been told to set up django and python on my current apache and mysql setup however I am having ...
6
votes
2answers
2k views
Set Snow Leopard to use python 2.5 rather than 2.6
I just upgraded to Snow Leopard and I'm trying to get it to use the old python 2.5 install. I had with all my modules in it. Does anyone know how to set the default python install to 2.5?
5
votes
2answers
284 views
Getting a PasteScript error when I try to serve an existing Pylons app
I'm trying to serve an existing Python 2.5 Pylons application on OS X Snow Leopard.
I've already installed Python 2.5 and set it as the default Python installation, installed paster, and installed ...
5
votes
2answers
1k views
Mac 10.6 Universal Binary scipy: cephes/specfun “_aswfa_” symbol not found
I can't get scipy to function in 32 bit mode when compiled as a i386/x86_64 universal binary, and executed on my 64 bit 10.6.2 MacPro1,1.
My python setup
With the help of this answer, I built a ...
5
votes
2answers
1k views
python locale strange error. what's going on here exactly?
So today I upgraded to bazaar 2.0.2, and I started receiving this message (I'm on snow leopard, btw):
bzr: warning: unknown locale: UTF-8
Could not determine what text encoding to use.
This error ...
5
votes
2answers
2k views
How can I capture iSight frames with Python in Snow Leopard?
I have the following PyObjC script:
from Foundation import NSObject
import QTKit
error = None
capture_session = QTKit.QTCaptureSession.alloc().init()
print 'capture_session', capture_session
device = ...
5
votes
3answers
5k views
How to update Numpy on Mac OS X Snow Leopard?
How can I update Numpy into the newest one? Should I download .dmg file from here:
http://sourceforge.net/projects/numpy/files/
Is this .dmg only for 10.5? I have installed numpy using these ...
5
votes
3answers
1k views
Compiling a py2app working build for both Leopard and Snow Leopard?
I currently am making my PyObjC application work for Snow Leopard and I successfully compiled a standalone app. My question would be, how do I make the build to be also Leopard-compatible, given these ...
4
votes
2answers
3k views
Install Python 2.7.1 side-by-side with Apple-supplied Python
I have just downloaded the Python 2.7.1 DMG from Python.org. I have seen suggestions to get ActivePython, but I would prefer the one from Python.org.
If I just run the mpkg installer inside the DMG, ...
4
votes
4answers
2k views
How to build 64-bit Python on OS X 10.6 — ONLY 64 bit, no Universal nonsense
I just want to build this on my development machine -- the binary install from Python.org is still 32 bits and installing extensions (MySQLdb, for example) is driving me nuts with trying to figure out ...
4
votes
3answers
624 views
How to clean up my Python Installation for a fresh start
I'm developing on Snow Leopard and going through the various "how tos" to get the MySQLdb package installed and working (uphill battle). Things are a mess and I'd like to regain confidence with a ...
4
votes
4answers
2k views
OpenGL in Python with Snow Leopard?
I'm interested in playing around with OpenGL in Python. I've used OpenGL in C++ and Objective-C, but I don't have much experience in Python. I'm wondering if there's a good tutorial that works in Snow ...
3
votes
1answer
70 views
Error installing psycopg2 on Mac OS 10.6
Hi i am trying to install psycopg2 on Mac 10.6. After i install i get this error when i try to import
import psycopg2
Traceback (most recent call last):
File "<stdin>", line 1, in ...
3
votes
3answers
530 views
Can I install Python 2.7.1 64bit along side of an exsiting 32bit install on OS X?
Short Description
Is it possible to install Python 2.7.1 64/32bit from python.org on top of an existing install (from python.org) of Python 2.7.1 32bit?
Background
I installed the 32bit version for ...
3
votes
3answers
2k views
Problem trying to install PyCurl on Mac Snow Leopard
My app needs to use PyCurl, so I tried to install it on my Mac but I found a lot of problems and errors.
Requirement:
First of all I have to say that the version of Python working on my Mac is 32 bit ...
3
votes
4answers
2k views
do i need 32bit libxml2 for python on snow leopard?
i'm having a hell of a time installing scrapy on my sl mbp. it requires libxml2, so i set about installing that. installing it from macports doesn't seem to pull down the python binding.
installing ...
3
votes
2answers
3k views
Django manage.py syncdb throwing No module named MySQLdb
I am a newbie learning Python/Django...
Am using the following tutorial located here.
Created a mysite database in MySQL 5 running on Snow Leopard.
Edited the settings.py file to look like this:
...
3
votes
3answers
4k views
Problems with Snow Leopard, Django & PIL
I am having some trouble getting Django & PIL work properly since upgrading to Snow Leopard.
I have installed freetype, libjpeg and then PIL, which tells me:
--- TKINTER support ok
--- JPEG ...
3
votes
2answers
2k views
Anyone get python26 install in Snow Leopard via Macports?
I got build error after run in Snow Leopard (MacPort v.1.8.0)
sudo port install python26
any workaround please?
Error: Target org.macports.build returned: shell command " cd ...
2
votes
2answers
66 views
How many installations of macports do I need
Over the past couple of months I've set about using Wing IDE to do the vast majority of my programming. I chose Wing primarily because it works well with wxPython, allowing me to debug much more ...
2
votes
2answers
133 views
Error when running tests of scipy and numpy on OS X Snow Leopard
I am new to stackoverflow as well as Python, and I hope to use stackoverflow to learn and improve my Python programming.
However, as soon as I set up Python, SciPy, NumPy on my Mac, I encountered a ...
2
votes
0answers
47 views
Installing PyQt on Snow Leopard [closed]
Possible Duplicate:
How to install PyQt on Mac OS X 10.6
I have recently been trying to install PyQt on a Mac (running Snow Leopard) so that I can then use py2app to create a standalone ...
2
votes
2answers
568 views
Problem importing matplotlib.mlab and .pyplot in python 2.7 on Mac OSX 10.6
I am trying to plot a histogram using matplotlib in Python 2.7 on OSX 10.6
I have verified that I can import numpy, scipy, and matplotlib into python. A sample script on the matplotlib website does
...
2
votes
1answer
183 views
getaddrinfo unable to resolve host
I'm having a weird problem. I have this Python application and when I try to open a url in the application, for instance urllib2.urlopen("http://google.com", None) I get the following error:
IOError: ...
2
votes
1answer
335 views
How do I stop setup.py from trying to include -arch ppc on MacOSX builds?
It appears that Xcode4 doesn't include PPC as a build option anymore. When using setup.py for modules that include C extensions, setup.py always attempts the build with these options:
gcc-4.2 ... ...
2
votes
1answer
518 views
NI VISA + pyVisa on Mac OS X (Snow Leopard)
Has anyone had success running pyVisa on Snow Leopard with a NI GPIB module?
Based on all of the forums I have read on NI's website, it does not appear that the combination of NI VISA and pyVisa can ...
2
votes
3answers
868 views
Error configuring django with python-mysql in Mac OS 10.6.6
My Setup:
Mac OS 10.6.6 - x86_64
MySQL 5.5.8
Python 2.7.1
Django 1.2.5
mysql-python installed via easy_install
My situation:
I've been struggling to get my setup to work. The problem is with the ...
2
votes
2answers
920 views
Workaround for Pythonbrew failing because test_socket can't resolve?
I'm using pythonbrew to install Python 2.6.6 on Snow Leopard. It failed with a readline error, then a socket error. I installed readline from source, which made the installer happy on the next ...
2
votes
2answers
1k views
How to Install rpy2 on Mac OS X
I am trying, so far unsuccessfully, at installing the rpy2 for python on my Mac OSX. I have tried Macports and DarwinPorts but have had no luck with import rpy2 within the python shell environment. ...
2
votes
2answers
267 views
Installing VPython in Snow Leopard?
So, i've just startet university, and we have to install python.
Thats fine, cause it's build-in to OSX (Snow Leopard).
I have installed matplotlib, numpy and scipy using this : ...
2
votes
2answers
762 views
Django and PIL on Snow Leopard
I am trying to get PIL working with Django 1.2.1 and Python 2.7 on Snow Leopard
I have followed instructions I found here on SO and I should be doing it right.
The imports and selftest.py works fine ...
2
votes
2answers
166 views
Can a process running a 32bit compiled binary use more than 4gb of memory?
Is it possible for a single process running a 32bit compiled version of python in Snow Leopard (64bit machine) to appear to consume > 4gb (say 5.4gb) of virtual memory as seen by the top command?
I ...
2
votes
1answer
443 views
Change the gcc version that distutils uses
I'm on Snow Leopard, and want distutils to use gcc 4.0 and not 4.2, can anyone tell me how to make it do that? I've tried changing the /usr/bin/g* symlinks, and setting the C* environment vars -- but ...
2
votes
1answer
94 views
How to get path to the installed GIT in Python?
I need to get a path to the GIT on Max OS X 10.6 using Python 2.6.1 into script variables. I use this code for that:
r = subprocess.Popen(shlex.split("which git"), stdout=subprocess.PIPE)
print ...
2
votes
1answer
216 views
Are there any downsides to upgrading Python on Snow Leopard?
I want to use the newest version of Python on Snow Leopard using the installer package, but I've read some confusing articles about conflicts when upgrading. I plan on using PyDev in Eclipse, will ...
2
votes
2answers
2k views
Problems installing MySQL-python-1.2.3c1 on Mac Snow Leopard
Hi All
I am having a problem installing the Python MySQL connector (MySQL-python-1.2.3c1) on my Mac OSX Snow Leopard.
System State
I have manually compiled an installed:
mysql-5.1.41
This seems to ...