Questions tagged [canopy]

A Python-based tool for desktop application analysis and distribution of Python.

A Python-based tool for desktop application analysis and distribution of Python. Canopy provides an open and clear understandable environment for scientific research and calculations. Since the language is Python, their algorithms, scripts and programs will never be frozen in their own language. And with the analysis of desktop applications, data analysis, scripted scenarios, and building a more target-oriented applications.

Canopy was formerly known as the Enthought Python Distribution. It is a commercial product, but a free version is available (with fewer packages). Degree-granting institutions also qualify for a free academic license.

The product home page: https://www.enthought.com/products/canopy/

529 questions
7
votes
1 answer

pip says modules "weren't found" to uninstall, but pip list shows them

With pip list I'm shown a listing of the installed modules, which includes scipy, numpy, and pandas. If I pip install -U... any of those, it checks it, sees its up-to-date, and returns to prompt. But if I pip uninstall pandas or any of the items…
d8aninja
  • 3,233
  • 4
  • 36
  • 60
7
votes
2 answers

Pickling a DataFrame

I am trying to pickle a DataFrame with import pandas as pd from pandas import DataFrame data = pd.read_table('Purchases.tsv',index_col='coreuserid') data.to_pickle('Purchases.pkl') I have been running on "data" for a while and have had no issues so…
Keith
  • 4,646
  • 7
  • 43
  • 72
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
6
votes
2 answers

Installing Torch7. iPython installation error (mac)

I'm trying to install Torch7 on my mac, however the installation halts at this point: Not updating your shell profile. You might want to add the following lines to your shell profile: export PATH=/Users/khsiddiqui/torch/install/bin:$PATH export…
WΔ_
  • 1,229
  • 4
  • 20
  • 34
6
votes
0 answers

Enthought Canopy emacs keybinding

Canopy's integrated Ipython terminal allows to use Emacs keybindings, but the integrated code editor won't. This is a problem when switching from one window to the other... Is there a way to activate Emacs keybindings in "Enthought" Canopy code…
slegroux
  • 610
  • 5
  • 11
5
votes
1 answer

Python Debugging Using Pdb

I'm using a interactive graphical Python debugger with ipdb under the hood (Canopy's graphical debugger). The script I am working on has multiple imported modules and several calls to their respective functions. Whenever I attempt a debugging run,…
Mr. Frobenius
  • 324
  • 2
  • 8
5
votes
4 answers

Python line_profiler installation

Hi I'm a newbie Python programmer. I want line by line profiling and so have tried to install the line_profiler package. But it's not working. Here is what I have done: By the way I'm on Windows 8.1, 64 bit and I'm using Enthought Canopy. I got…
davo36
  • 694
  • 9
  • 19
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

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
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
4
votes
2 answers

animating mayavi with moviepy

I am trying to figure out how to export 3D plots created with Mayavi to a movie that I can use for presentations in Powerpoint etc. I found a discussion of doing this using moviepy…
LM Anovitz
  • 61
  • 1
  • 5
4
votes
2 answers

OLS Breusch Pagan test in Python

I used the statsmodels package to estimate my OLS regression. Now I want Breusch Pagan test. I used the pysal package for this test but this function returns an error: import statsmodels.api as sm import pysal model = sm.OLS(Y,X,missing =…
Eghbal
  • 3,892
  • 13
  • 51
  • 112
4
votes
1 answer

How to print Latex with Sympy in Canopy's IPython qtconsole?

I'm running the 64-bit distribution of Canopy on Mac os X 10.9.3. When I work with Sympy in the IPython QTConsole included in Canopy, the printing is returned as something resembling the "ASCII pretty printer" style, but in a way that is almost…
brucecc
  • 41
  • 2
4
votes
0 answers

How to install CVXOPT with Enthought python (Canopy)

Before I start, let me put alternative titles for this post: How to compile CVXOPT with Intel MKL ? How to change __init__.py in CVXOPT to compile with Intel MKL ? Let me explain the issue. I am trying to install pystruct with Enthought python…
kayhan
  • 373
  • 3
  • 11
1
2
3
35 36