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
11
votes
3 answers

Python 3 in Enthought Canopy

How to use Python 3 in Canopy Enthought? It has the option on the bottom to select Python 3, but this does not change anything when we use: print(sys.version) 2.7.3 | 32-bit | (default, Mar 25 2013, 15:38:39) [MSC v.1500 32 bit (Intel)]
PascalVKooten
  • 20,643
  • 17
  • 103
  • 160
10
votes
2 answers

Can I relink enthought python to new version of openssl on Mac OS X?

This morning, I'm running into SSL related problems using EPD 7.3 on Mac OS X 10.6.8. When I run pip (version 1.3.1), I get: pip install requests Downloading/unpacking requests Could not fetch URL https://pypi.python.org/simple/requests/: There…
Raymond Yee
  • 549
  • 5
  • 13
9
votes
6 answers

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 Python installed already. If I wish to use the…
pewfly
  • 283
  • 1
  • 3
  • 5
9
votes
2 answers

Python - Changes to imported file do not take effect

I have a file called test_file, which is designed to test another file, called file. 'test_file' also contains a .txt file in the same directory. When I update file, save, select 'Change to Editor Directory...', then run test_file, Enthought does…
TheRealFakeNews
  • 7,512
  • 16
  • 73
  • 114
9
votes
4 answers

Disable or Catch VTK warnings in vtkOutputWindow when embedding Mayavi

I'd like to either disable the VTK warning window or, better yet, catch them to handle with my application's logging system. My application is using an embedded mayavi view, and I don't want error windows popping up that I have no control over. …
flutefreak7
  • 2,321
  • 5
  • 29
  • 39
9
votes
3 answers

wxPython 2.9 on Mac Os X

I am using Enthought Python Distribution (7.2, 64-bit). It comes without wxPython (which is quite important). However, wxPython-2.9 seems to support 64-bit Cocoa interface, so I gave it a try. Actually, it all went good: the command python…
Ivan Oseledets
  • 2,270
  • 4
  • 23
  • 28
8
votes
2 answers

How to create multiple histograms on separate graphs with matplotlib?

I have 5 data sets from which I want to create 5 separate histograms. At the moment they are all going on one graph. How can I change this so that it produces two separate graphs? For simplicity, in my example below I am showing just two…
Freya Lumb
  • 81
  • 1
  • 1
  • 3
8
votes
1 answer

Upgrade version of scikit-learn included in Enthought Canopy distribution

I have EPD 7.3.1 installed (nowadays called Enthought Canopy), which comes with scikit-learn v 0.11. I am running Ubuntu 12.04. I need to install v 0.12 of scikit-learn. The scikit-learn doc says clone the repository, add the scikit-learn directory…
scharfmn
  • 3,561
  • 7
  • 38
  • 53
7
votes
1 answer

Probing/sampling/interpolating VTK data using python TVTK or MayaVi

I would like to visualise a VTK data file (OpenFOAM output) using python. The plot I would like to make is a 1-d line plot of a quantity between two endpoints. To do so, the unstructured data should be interpolated on the points which lie between…
Newfarmer
  • 349
  • 2
  • 9
7
votes
2 answers

Python file open() in Enthought Canopy fails with: "IOError No such file or directory"

I'm running code under Enthought Canopy to open and read a file. It keeps telling me IOError. But I am pretty sure the text file name is right and it is in the same directory with the Python file, and the code works well in other IDEs like Python…
Aimee
  • 83
  • 1
  • 1
  • 4
7
votes
1 answer

Dynamically add legends to matplotlib plots

I have a set of plots in python and want to add legends to each of them separately. I am generating the plots in a for loop and want to add the legends dynamically. Im getting only the last legend shown. I want all 9 off them to be displayed for q…
7
votes
2 answers

Distutils compiler options configuration

Maybe a stupid question, but I was wondering where Python's distutils get the compiler options from? It gets some linked directories wrong and I want to correct that once and for all. I know there should be a…
Mulle
  • 73
  • 1
  • 3
7
votes
4 answers

How to Install openCV into Enthought python distribution on Mac

Edit: Okay, I've generalized the question more in hopes that I get an answer. All I care about in the end is somehow installing openCV into the Enthought python distribution on a Mac computer. Any help would be greatly appreciated, the scripting…
Shinjitsu
  • 639
  • 3
  • 10
  • 23
6
votes
2 answers

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 call a subroutine any time a trait has changed. I…
Mike Pennington
  • 41,899
  • 19
  • 136
  • 174
6
votes
1 answer

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 New python executable in test/bin/python ERROR: The…
1
2
3
55 56