0
votes
1answer
26 views

Python: incorrect os.linesep on OS X

Platform: OS X Mountain Lion Python 2.7.4 I have a piece of script that needs to convert all eol characters in a string to unix style \n. I get a string supplied by Qsci.Scintilla.text() referenced ...
0
votes
0answers
56 views

Can't import tkinter in python using Mac OSX 10.8.3

I am using the anaconda python package, which is configured for tkinter. I installed ActiveTcl, following http://www.python.org/getit/mac/tcltk/ I am able to import other libraries fine, run ipython ...
0
votes
1answer
32 views

pip: Could not find an activated virtualenv (required)

I am trying to instal virtualenv and/or virtualenvwrapper on a mac osx 10.8.3 I have been fighting with python for the last two days. Finally I was able to install python 2.7.4 using brew. Before I ...
1
vote
1answer
50 views

Brew not installing the latest version [closed]

I am trying to get that latest version of python on a Mac Mountain Lion. But the latest version is 2.7.4, but when I run brew install python it downloads the 2.7.2. What is going on? brew install ...
0
votes
1answer
32 views

wx.TextCtrl has blue outline but won't receive text in wxMac

I have been writing a printer driver backend for Linux and Mac that displays a window allowing the user to select a printer. Part of the process is for the user to input Username and Password for ...
0
votes
0answers
29 views

What would distinguish a plain-text file saved on OS X 10.8 and a plain-text file saved on Windows 8?

I've written a script in Python that outputs some G-code for a 3D printer in a .bfb format which is essentially a plain-text file with ASCII characters. However for some reason, only files outputted ...
1
vote
3answers
122 views

os.walk creates a kernel panic [closed]

The directory I'm trying to walk has about 400k files in it according to $ find . -type f | wc -l Every time I run the script that uses os.walk, it sends my laptop into a kernel panic. It's very ...
1
vote
3answers
219 views

Issues with importing pylab on Mac OS X 10.8.3

I get the following error when I import pylab: Python 2.7.2 (default, Oct 11 2012, 20:14:37) [GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] on darwin Type "help", "copyright", ...
2
votes
1answer
72 views

NSUserNotificationCenter.defaultUserNotificationCenter() returns None in python

I am trying to connect to the Mountain Lion notification center via python. I've installed pyobjc and am following the instructions here and here. Also see: Working with Mountain Lion's ...
0
votes
2answers
287 views

How to install python 2.7.4 on OSX Mountain Lion

I tried installing python 2.7.4 by overwriting the native Apple's installation of python 2.7 by following this link (wolfpaulus.com), and as a result both easy_install and pip no longer work. This ...
0
votes
1answer
84 views

How can I permanently accept OSX firewall allow/deny confirmation when running python?

Overview I am using the tornado web server within python on OSX Mt Lion. Every time I start the tornado server I get a popup and have to allow/deny incoming access to the application. I have listed ...
0
votes
0answers
84 views

PyQT on Mac Mountain Lion - Can't create new QApplication

I'm trying to learn PyQT and have installed QT, SIP, and PyQT without much trouble. However while trying to follow some basic tutorials, I can't even create a QApplication, i.e.: import sys from ...
0
votes
1answer
135 views

Configuring Mac OS X Mountain Lion to use python.org's python 2.7.4

I am using Mac OS X Mountain Lion and I have installed the "python.org version" of python 2.7.4. It seems like this newly version is invoked by the command python2 since it gives the version as ...
0
votes
2answers
74 views

Pylab is not installing on my macbook

MITX 6.00 pylab is not installing on my macbook running mountain lion running python 2.7.3. I have tried installing it multiple times but I can not get it to work. I have posted the error message ...
2
votes
2answers
130 views

Exporting figure as pdf using savefig() messes up axis background in matplotlib

I'm trying to change the axis background on a plot where several imshow() calls render images in various locations via the extent parameter. When I save a pdf of the figure using savefig(), I lose ...
0
votes
0answers
61 views

Sound editing and equalizer on python

Im currently using pyglet as my sound library on python, The library is great but it does not contain an important feature i really need: Frequency control while playing a certain song (lets say ...
0
votes
1answer
100 views

Running wxPython 2.9 on OS X 10.8 (64 bit)

I have EPD 7.3 and have installed wxPython 2.9 through the Enthought repositories. I tried running winPDB, which requires wxPython and I got this message : This program needs access to the screen. ...
0
votes
2answers
244 views

Installing PyGame onto Mountain Lion OS

Okay, so I've completely given up. I've tried about a thousand different walkthroughs to solve my problem, on every website I can find, but I either get stuck and no one knows the answer, or they ...
0
votes
1answer
150 views

How to set default locale for app bundles in OSX Mountain Lion

How can I set the default locale (LANG, LC_ALL = en_US.UTF-8) with which apps are run in OS X Mountain Lion? I am trying to run a Python program packaged to an .app with py2app. When running the app ...
0
votes
1answer
45 views

Weird issue with platypus (makes .app packages from scripts)

I wrote myself a small Python script that I want to use to automatically do things with certain types of files; as such, I want to create an .app out of it so that I can set certain files to be opened ...
0
votes
1answer
59 views

Programatically add songs to iTunes

Is it possible to add songs to iTunes on OS X programatically? I.e. say I have a directory of songs I'd like to add to iTunes from a Python script. What is the easiest way to achieve that?
0
votes
1answer
265 views

Running Python Script with Launchd: imports not found

I've been trying to set up a script to run a python program at regular intervals using launchd. The python program fails because it can't find my imports---I know this because I caught the errors in a ...
1
vote
4answers
281 views

Pycrypto install fatal error: gmp.h file not found

It seems like there are a number of people who have had a similar problem, however, after much searching I haven't been able to find a solution that works with my particular architecture. I'm trying ...
3
votes
4answers
200 views

For real, too many installations of Python on OSX Mountain Lion

I have three different Python 2.7s at: /Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7 /opt/local/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7 ...
3
votes
1answer
59 views

Python output line wrapping

I am running the following Python script in an OS X 10.8 terminal with a line length of about 200 characters. However the output from the script is wrapped at about line 80. How can I make the output ...
0
votes
1answer
229 views

.py files not opening in IDLE from OSX Finder?

I recently re-installed Python 2.7.3 from python.org on OSX 10.8.2, and now nothing (literally nothing I can see) happens when I double-click on .py files in Finder, or when I ...
0
votes
1answer
161 views

How to set up multiple PATHs in the user bash_profile in OSX 10.8?

I am looking to set up my laptop for both Python development and Phonegap Android development in OSX 10.8 using Eclipse. I installed the lastest version of Python (3.3) which added the code: # ...
0
votes
2answers
97 views

virtualenvwrapper on mountain lion

Following this guide http://virtualenvwrapper.readthedocs.org/en/latest/. I have a fresh install of mountain lion (i.e. not upgrading) Ran pip install virtualenvwrapper mkdir -p $DEV_HOME ...
1
vote
1answer
107 views

Encoding file names to base64 on OS X not correct when using Japanese characters

I have a bunch of files named after people's names (e.g. "john.txt", "mary.txt") but among them are also japanese names (e.g. "fūka.txt", "tetsurō.txt"). What I'm trying to do is to convert names ...
0
votes
1answer
411 views

mountain lion os X python mysql install [closed]

downloaded tar file from here http://sourceforge.net/projects/mysql-python/files/mysql-python/1.2.3/ and followed the guide at ...
-1
votes
1answer
130 views

Multiple installations of Python on Mac [closed]

I'm struggling with multiple versions and installations of Python on a new system, and I'm a relative newcomer to OSX so patience much appreciated. I now have Python in several folders of my new ...
0
votes
0answers
221 views

Error configuring sublime text 2 with python 3.3

I basically copied and pasted this from google. I am on OSX Mountain Lion. { "cmd": ["python3", "-u", "$file"], "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", "selector": ...
1
vote
1answer
86 views

What is the difference between Python's 'Extras' and 'site-packages' directories?

I'm confused about the way Python, on OS X, uses the packages in 'Extras' and 'site-packages'. In particular, I'm confused about the what I see in these directories, and how duplicate packages in the ...
2
votes
1answer
328 views

Gitlab 500 error on viewing file sources on Mountain Lion Server

And another Problem. If I try to view the content of an File in the Files Tab, nothing is shown. After a quick look at the production.log I found the following: Completed 500 Internal Server Error ...
0
votes
0answers
166 views

Numpy unit test failures in mountain lion

I am trying to install SciPy on my Mac OS 10.8.2 for Python 2.7.2. I have XCode 4.6 updated and with Command Line Tools installed. I installed numpy using pip as suggested in this thread Numpy ...
2
votes
1answer
159 views

PyCuda / Multiprocessing Issue on OS X 10.8

I'm working on a project where I distribute compute tasks to multiple python Processes each associated with its own CUDA device. When spawning the subprocesses, I use the following code: import ...
1
vote
1answer
89 views

How to use lua with python on Mac OS Mountain Lion

I have been using Lupa 0.20 + LuaJIT 2.0.0 for embedding lua on python 2.7 code in a W7 box. Unfortunately, I could not make it work on Mountain Lion Mac OS. I am able to compile LuaJIT and Lupa, ...
0
votes
1answer
211 views

Installing PIL on OSX Mountain Lion for google app engine,

I know there are many questions on SO, and forum and blog posts around the web, but I keep running into the same problems. I'm trying to install PIL to use it for the app engine imaging api. In the ...
1
vote
1answer
130 views

How does PySerial crash Mac OS X?

I managed to reproducibly freeze OS X (well, keyboard and mouse input at least) with a silly misuse of PySerial. Keyboard and mouse cease responding altogether though the power button works. I ...
0
votes
0answers
149 views

Switching from Python 2.7.* to 2.6.8 Mac Os X 10.8.2

Please keep in mind I am not overly proficient at Terminal/Unix. I originally installed some version of python 2.7, and now need to run an older version (2.6.8). With your help thus far (plus a lot ...
0
votes
0answers
43 views

hanging subprocess piping on python os/x mountain lion

The following hangs for me on Mountain Lion (Darwin 12.2.1), but not on Lion, using the system python install in both cases: import subprocess subprocess.check_call('yes | true', shell=True) I see ...
8
votes
4answers
190 views

German number separators using format language on OSX?

Update: The answers show so far that it seems to be a platform-related bug on OSX that has to do with the specific locale settings as they don't fully support grouping numbers. Update 2: I have just ...
0
votes
0answers
83 views

Python Email Message Unable to get details

This is my code and I am pretty sure I am missing something because nothing is working (all the methods that seem to have data available are returning None or something else). Also why is the ...
6
votes
4answers
188 views

How do I maintain Python packages on OS X Lion?

What is the correct way to install and update Python packages on OS X Mountain Lion, using Apple's built in Python? I've tried all everything I can find here and in the documentation for various ...
0
votes
1answer
125 views

How do I install reddit on a local OS X machine?

They have provided a install script for Ubutu. But how do I install reddit on a Mac OS X machine ? [Mountain Lion] The dependencies are listed here : ...
0
votes
0answers
165 views

How can I make pyside-uic find pyside module?

I recently installed py26-pyside on OS X 10.8.2 using macports. Using pyside from python scripts is working as expected. Now I am trying to convert a Qt .ui file to python code using pyside-uic: ...
2
votes
2answers
423 views

Can't import twisted.internet.protocal module on mountain lion

I am trying to implement a TCP server and using python script. So I created a server.py on my desktop and imported the following modules: from twisted.internet.protocol import Factory,Protocol It's ...
1
vote
0answers
105 views

Python OS X 10.8 Dtrace patched but getting “invalid probe specifier” running test scripts

I patched Python 2.7.3 with Issue 13405 - http://bugs.python.org/issue13405# - compiled python with the --with-dtrace (configure option). When I run the test_dtrace script the tests fail with the ...
1
vote
1answer
226 views

Changing Python easy_install's default include path

Question about Python's setuptools. I just did a fresh install of Mac OS 10.8 and installed the official Python 2.7.3 package. When installing the binary module py-bcrypt (or any other binary module ...
1
vote
1answer
117 views

Scipy test issue - pointer being freed was not allocated

I installed Numpy and Scipy on Mac os X (mountain lion) by compiling from the source. The numpy test result is great. But there is an issue with scipy test. In [1]: import scipy In [2]: ...

1 2