Questions tagged [enthought]

Enthought provides scientific and analytic software, training, and consulting solutions utilizing Python. The Enthought Canopy (formerly EPD, or Enthought Python Distribution) software platform includes an integrated analysis and application development environment plus a Python distribution with over 200 pre-compiled core scientific and analytic libraries such as SciPy, NumPy, Pandas, Matplotlib, and IPython.

Enthought provides scientific and analytic software, training, and consulting solutions utilizing Python.

The Enthought Canopy (formerly EPD, or Enthought Python Distribution) software platform includes an integrated analysis and application development environment plus a Python distribution with over 200 pre-compiled core scientific and analytic libraries such as SciPy, NumPy, Pandas, Matplotlib, and IPython.

In 2014, Enthought introduced Enthought Training on Demand, an online learning library of Python training modules developed for scientists, engineers, and data analysts. The company also provides live Python training classes and consulting solutions for enterprises in industries such as finance, energy, aerospace, consumer products, and biotechnology.

The company was founded in 2001 and is headquartered in Austin, Texas, with additional offices in Cambridge, UK, and Mumbai, India.

835 questions
85
votes
1 answer

Mayavi colorbar in TraitsUI creating blank window

I'm trying to create a GUI in TraitsUI that includes two Mayavi figures. I have implemented these figures as per the multiple engines example in the Mayavi documentation. However, when I add a colorbar to one of the figures and run the GUI script it…
Siyh
  • 1,747
  • 1
  • 17
  • 24
61
votes
12 answers

ImportError: No module named Cython.Distutils

I'm having a strange problem while trying to install the Python library zenlib, using its setup.py file. When I run the setup.py file, I get an import error, saying ImportError: No module named Cython.Distutils` but I do have such a module, and I…
Edward Newell
  • 17,203
  • 7
  • 34
  • 36
44
votes
10 answers

sklearn OMP: Error #15 ("Initializing libiomp5md.dll, but found mk2iomp5md.dll already initialized.") when fitting models

I have recently uninstalled a nicely working copy of Enthought Canopy 32-bit and installed Canopy version 1.1.0 (64 bit). When I try to use sklearn to fit a model my kernel crashes, and I get the following error: The kernel (user Python…
ADJ
  • 4,892
  • 10
  • 50
  • 83
33
votes
6 answers

How to add Python to Windows registry

I've downloaded Enthought Canopy EPD Free (now Canopy Express) from https://www.enthought.com/products/epd/free/ and want to install SciKit Learn (http://sourceforge.net/projects/scikit-learn/files/) which is not part of the basic EPD Free install.…
user2621120
  • 331
  • 1
  • 3
  • 3
30
votes
6 answers

Pip install python package into a specific directory other than the default install location

The default location where pip installes packages on my Ubuntu system is '/usr/local/lib/pytho2.7/dist-packages/' which I think is the default in general. I am using Enthought python distribution (EPD not canopy) and would like to install a package…
user2502020
  • 371
  • 1
  • 3
  • 6
28
votes
6 answers

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() >>> pa.get_default_input_device_info() Traceback (most recent call last): File "", line 1, in…
Gus
  • 4,375
  • 5
  • 31
  • 50
25
votes
1 answer

Make sure numpy is using MKL library on mac pro

I am using Enthought's Canopy/EPD version of python which ships with numpy linked against MKL. I am currently running a set of simulations in parallel (using PP) on both my work computer (Windows 7, Quad Core i5 @ 3.33 Ghz, 4 GB ram) and my home…
user1554752
  • 707
  • 2
  • 10
  • 24
25
votes
3 answers

Matplotlib - Force plot display and then return to main code

This is a MWE of what I'm after, adapted from this question: from matplotlib.pyplot import plot, draw, show def make_plot(): plot([1,2,3]) draw() print 'continue computation' print('Do something before plotting.') # Now display plot in…
Gabriel
  • 40,504
  • 73
  • 230
  • 404
25
votes
2 answers

Any way to solve a system of coupled differential equations in python?

I've been working with sympy and scipy, but can't find or figure out how to solve a system of coupled differential equations (non-linear, first-order). So is there any way to solve coupled differential equations? The equations are of the…
bynx
  • 760
  • 2
  • 8
  • 19
19
votes
8 answers

Open source Enthought Python alternative

I used Enthought's python distribution as a graduate student for data analysis and really enjoyed it. But I've recently taken a job which takes away my ability to use it. I prefer Python for initial scoping and cleaning the data, and R for the…
tshauck
  • 20,746
  • 8
  • 36
  • 36
19
votes
3 answers

Matplotlib vline label parameter not showing

I want to label my vertical lines with matplotlib's .vline command, but for some reason the label parameter doesn't do anything/show anything on the final plot. Does anyone know how to get the label to show? plt.vlines(x=pah, ymin=0, ymax=0.6,…
Lawrence
  • 285
  • 1
  • 2
  • 7
16
votes
7 answers

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 this step does. I want to make sure that when I…
Curious2learn
  • 31,692
  • 43
  • 108
  • 125
15
votes
1 answer

Dynamically create plots in Chaco

The Chaco plotting toolkit for Python includes examples that show how to dynamically update existing plots. However, my application requires that I dynamically create and destroy plots depending on the data. I am new to programming with Chaco and…
Andreas
  • 433
  • 1
  • 5
  • 14
13
votes
2 answers

Opinions about Enthought Traits/TraitsUI for Python desktop development

I'm looking for opinions and experiences about using Traits / TraitsUI / enaml for Python desktop development. The documentation and the Enthought support looks promising, so I wanted to know real first-hand experiences of developers using this…
PabloG
  • 25,761
  • 10
  • 46
  • 59
12
votes
4 answers

How to set ffmpeg for matplotlib in mac os x

I want to animate some plots with matplotlib. The version I have is the Enthough Canopy distribution (Version: 1.1.0.1371), running in a mac os x 10.8 (Mountain Lion). I have used the FuncAnimation routine from the animation package of matplotlib.…
AlexNoir
  • 789
  • 3
  • 8
  • 20
1
2 3
55 56