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
5
votes
1 answer

Enthought Canopy Mayavi font size bug

The font size setting in Enthough Canopy Mayavi mlab appears to be broken. Neither the command: mlab.axes.label_text_property.font_size = 12 (e.g.) nor the direct menu font size command (advanced settings) works. I have logged a bug report with…
dcnicholls
  • 391
  • 1
  • 5
  • 15
5
votes
2 answers

Vim shows: ImportError: No module named site. while I am using Canopy1.1

I have installed Canopy 1.1 express in Windows Xp 32, and I use vim as editor. When I typing :python print("hello") in command line of vim ,it shows: Importerror: No module named site and crashed. In fact, my vim cannot load and plugin written by…
user2830459
  • 53
  • 1
  • 5
5
votes
1 answer

How to read a large text file in Python?

I am using Enthought Canopy (a set of many different Python Library packages e.g. NumPy, Pandas,etc) for data analysis. I am trying to read a text file and create a dataframe out of it. The text file has 1180598 rows and 18 columns. All columns have…
beginagain
  • 87
  • 1
  • 2
  • 6
5
votes
2 answers

Jetbrains PyCharm with Enthought Canopy

New to Python and I have been trying different IDE's and Python distributions. So far I've used the Jetbrains IDE's, and it seems like the most mature IDE of them all. The people in the project like the scientific distributions (Continum IO, and…
david valentine
  • 4,625
  • 2
  • 21
  • 15
5
votes
1 answer

Can't upgrade matplotlib in Ubuntu 12.04 with Canopy installed

I'm trying to upgrade matplotlib in Ubuntu 12.04. When I run the command: sudo pip install --upgrade matplotlib I get this error: Downloading/unpacking matplotlib Running setup.py egg_info for package matplotlib The required version of…
Gabriel
  • 40,504
  • 73
  • 230
  • 404
5
votes
1 answer

venv Python uses incorrect sys.prefix

I am running canopy 64 bit Version: 1.0.3.1262 on mac Mountain Lion. I have installed virtualenv using easy_install. But while I am trying to execute the command: virtualenv venv --distribute It shows the following error: Using base prefix…
user1763076
5
votes
7 answers

Missing dll Error Whle installing Python 2.7

I am trying to install python(epd_free-7.3-2-win-x86) on my PC (windows 7 - 32bit) but not able to do so. it shows error which says a DLL is missing. searched every where but could not found. i have attached an image of error message dialog. I also…
Muddassir Iqbal
  • 142
  • 1
  • 1
  • 12
5
votes
1 answer

Matplotlib - Grid always in front of ax-h/v-lines

Minimal working example of my code: import matplotlib.pyplot as plt import matplotlib.gridspec as gridspec import numpy as np from scipy.ndimage.filters import gaussian_filter import numpy.random as nprnd x = nprnd.randint(1000, size=5000) y =…
Gabriel
  • 40,504
  • 73
  • 230
  • 404
5
votes
0 answers

Importing rpy2 modules in Enthought Canopy python

I reinstalled R and rpy2 after installing Enthought Canopy python. In python I can now: import rpy2 without an error message. However, when I want to import any specific rpy2 modules, I get the following error: import…
Martin
  • 93
  • 1
  • 4
5
votes
6 answers

Display of "Canopy" on command line

I have a basic terminal question. I just installed enthought's Canopy for Python on Snow Leopard, and (Canopy 64bit) continually shows up when I'm working on the command line. EX: (Canopy 64bit) Macbook~[username]$ I've tried editing my bashrc file,…
user2269080
  • 53
  • 1
  • 4
5
votes
3 answers

Threaded FFT in Enthought Python

Fast Fourier Transforms (FFTs) in Numpy/SciPy are not threaded. Enthought Python is shipped with the Intel MKL numerical library, which is capable of threaded FFTs. How does one get access to these routines?
bdforbes
  • 1,486
  • 1
  • 13
  • 31
4
votes
1 answer

virtualenv broken after messing with matplotlib/EPD

I've been banging my head against a wall trying to get virtualenv on Mac OS X (Snow Leopard) playing nicely with the matplotlib and/or the Enthought Python Distribution, and after following a bunch of different helpful advice I think I've broken my…
daltonb
  • 635
  • 8
  • 26
4
votes
1 answer

How do I enforce a minimum value on a Enthought Traits/UI Float trait?

I'm using the Enthought Traits/UI system and would like to enforce a minimum value on a Float trait, which appears in the GUI and is editable by the user.
dbanas
  • 1,707
  • 14
  • 24
4
votes
2 answers

Access low and high settings of an ETS Range attribute?

Here is an interactive Python session which uses components of the Enthought Tool Suite (ETS): >>> import sys >>> sys.version '2.7.10 (default, May 23 2015, 09:44:00) [MSC v.1500 64 bit (AMD64)]' >>> import traits >>> traits.__version__ '4.5.0' >>>…
jim vickroy
  • 142
  • 2
  • 9
4
votes
0 answers

Enthought Mayavi TVTK Scene no display

I am using Enthough Canopy on Ubuntu 14.04. I installed mayavi & VTK through Canopy GUI. The following example shows a TVTK Scene with no display. from mayavi import mlab mlab.test_contour3d()
Aniket Vij
  • 657
  • 1
  • 5
  • 9