Tagged Questions
13
votes
2answers
555 views
PyAudio IOError: No Default Input Device Available
I'm using PyAudio under the Enthought Python Distribution (Python 2.6.6) in Ubuntu 10.10 x64.
>>> import pyaudio
>>> pa = pyaudio.PyAudio()
>>> ...
7
votes
3answers
4k views
Configuring Pydev Interpreter in Eclipse to use Enthought Python Distribution
I downloaded Pydev plugin for Eclipse (3.5.2) today on Mac OSX 10.5.8. To be able to use Pydev, I need to configure the interpreter in Eclipse. I am not clear what exactly I need to do here, or what ...
4
votes
1answer
491 views
How can I get virtualenv to produce Python executables with the correct sys.path using the Enthought Python Distribution?
I installed the Enthought Python Distribution version 7.0 on a Mac, then easy_installed pip, then did pip install virtualenv. When I try to create a virtual environment, I get:
> virtualenv test
...
3
votes
2answers
79 views
Using Enthought Python instead of the system Python
I've installed the Enthought Python Distribution, which is basically a glorified Python distribution with added libraries for numerical and scientific computing. Now, since I use Debian, there is ...
2
votes
1answer
1k views
Python Traits UI (Enthought)
I am working with some code that uses Traits UI to show a dialog from which the user is able to select two files:
class Files(HasTraits):
filename_1 = File(exists=True)
filename_2 = ...
1
vote
0answers
244 views
Using matplotlib: ImportError: No module named animation?
I've tried using the EPD installation on Mac OS X, the apt-get install process on Ubuntu, and the EPD installation on Ubuntu.
In the python interactive interpretor:
>>> import ...
1
vote
1answer
114 views
Python envisage framework
I just started with envisage framework. In the 4.x version I saw a few example, but I need a good documentation: link.
How can I add custom buttons to the envisage workbench, or how can I create a ...
1
vote
1answer
203 views
Profiling Python - Streaming Audio and spectrum
I'm trying to modify this example: https://svn.enthought.com/enthought/browser/Chaco/trunk/examples/advanced/spectrum.py. Unfortunately I have not been able to get it to scale. If I double the ...
1
vote
1answer
370 views
Can EPD Python and MacPorts Python coexist on OS X (matplotlib)?
I've been using MacPorts Python 2.6 on OS X 10.6.
I am considering also installing the Enthought Python Distribution (EPD) on the same machine because it comes preconfigured with matplotlib and other ...
1
vote
3answers
404 views
IPython tab completes only some modules
I'm using the EPD version of python and IPython. After installing some modules using easy_install I notice that, although they can be imported, they cannot be tab completed. They exist on the path ...
0
votes
2answers
38 views
Compare and Contrast using Enthought and installing individual libraries
Compare and contrast using Enthought and installing individual libraries. I am not clear on the benefits each option offers.
0
votes
1answer
29 views
Eclipse wont import my enthought modules
I have installed eclipse installed along with enthought. I can import my standard python modules no problem, but as soon as try to import my enthought modules I get an import error. I cant find the ...
0
votes
2answers
101 views
Cython ImportError: No module named parallel
I am trying to access the new parallel features of Cython 0.15 (using
Cython 0.15.1). However, if I try this minimal example (testp.py), taken from ...
0
votes
1answer
70 views
How can I fire a Traits static event notification on a List?
I am working through the traits presentation from PyCon 2010. At about 2:30:45 the presenter starts covering trait event notifications, which allow (among other things) the ability to automatically ...
0
votes
1answer
52 views
Is it possible to install homebrew-ed and Enthought python on a Mac without interference with each other?
I am a big fan of homebrew for package management on my Mac (OS X 10.6, x86_64). However, I have been trying to install MayaVi and wxPython, etc., which has been a total nightmare. Is it possible to ...
0
votes
1answer
35 views
os.path.join returning Errno22 in Enthought/Python
I'm working with a fairly complex Enthought/Python program that is returning this error:
File "C:\Users\riddle\Desktop\FCI2\src\equation.py", line 41, in main
fci_data = ...
0
votes
2answers
117 views
python GUI frameworks / libraries suited for data analysis programs
I'm looking for a good cross platform (mac, windows & linux) python GUI framework / library that will make my life easier while writing a data analysis program. Since my data is represented by ...
0
votes
2answers
41 views
Getting envisage services in a Handler
I'm using envisage workbance and I want to get the service in the Handler.
In the _tcp_send_changed function how can I get the services. In the plugin there is the self.application.get_service(....) ...
0
votes
1answer
154 views
how to install the 'pysparse' package using Enthought python, Windows XP SP3?
I am running on a Windows XP SP3 and currently have fresh installations of the following:
Enthought python Dist. version 7.1-2 (32-bit)
--> which set up a Python 2.7.2
...
0
votes
0answers
144 views
linking OpenCV2.3 to the enthought's python2.7
I have just installed the enthought package on an Ubuntu 10.4 machine under:
/home/epd
the python package is under
/home/epd/lib/python2.7
I also installed opencv under
/home/Opencv
However ...
0
votes
1answer
73 views
Getting Enthought Python IDLE to run code when shell is restarted
I'm running EPD and using IDLE for most of my coding. What I'd like to do is get IDLE to run a script to customize my environment whenever I restart the Python shell. I've tried reading all the ...
0
votes
1answer
61 views
biopython import in Enthought Python Distribution?
I am using the Enthought Python Distribution v7.0-2 (32-bit) and I am having trouble importing biopython. Does anyone know how to import biopython in EPD? I can import other libraries like numpy, ...
0
votes
1answer
101 views
How can I wrap a non-Traits model for use with Python Traits?
I would like to wrap a non-Traits model class for use with Python Traits. My goal is to write a Traits-based UI to manipulate an "external" model class. The external model class has been generated ...
0
votes
1answer
260 views
Enthought TraitsUI based Python IDE
Has anybody come across an Enthought TraitsUI (Envisage etc) based Python IDE?
I wonder why there is none, when Enthought Tool Suite makes it so easy to create extensible python GUI applications.
...