Hi all,
I'm rather newbie using spyder, but I like it a lot.
I have run into some issues though, that I am not sure how to fix or if that is the expected behaviour.
This are the steps to reproduce it.
1 - Clean install of Ubuntu 12.10 64bits
2- Using USC or apt install spyder (e.g. sudo apt-get install spyder) after allowing universe repositories.
Spyder 2.1.10,
3- Open spyder.
4- Open Ipython (0.13.1) interpreter with contextual menu.
5- type: %pylab to start scientific environment with matplotlib. IT IS NOT IMPORTED on ipython by default when opening a terminal.
6- type:
a=range(10)
plot(a)
7- The output shows that the plot object has been generated, but nothing shows up on display, neither inline embebded or as a floating window.
Out[7]: [<matplotlib.lines.Line2D at 0x32d5610>]
Replicating these steps on the standard python terminal produces a floating figure.
Any advice?
--
You received this message because you are subscribed to the Google Groups "spyder" group.
To view this discussion on the web visit https://groups.google.com/d/msg/spyderlib/-/k7qQ-UZc7K4J.
To post to this group, send email to spyd...@googlegroups.com.
To unsubscribe from this group, send email to spyderlib+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/spyderlib?hl=en.
--
You received this message because you are subscribed to the Google Groups "spyder" group.
To view this discussion on the web visit https://groups.google.com/d/msg/spyderlib/-/L7zNhPx39mUJ.
To view this discussion on the web visit https://groups.google.com/d/msg/spyderlib/-/zzdv8jDk9iYJ.
Yeah... I've been kicking this idea around, but not sure I want to commit just yet - mainly because I'm normally a fan of using the package manager on systems like this as much as possible. Kind of a six one way, half-dozen the other dilemmas as far as which one is more frustration - dealing with out-of-date semi-broken version supported by the system package manager, or compiling from source and having to hunt down dependencies manually and pin packages at specific versions to support the same. I haven't tried it for spyder, so it may be a lot less painful than that... but BTDT in the past.
FWIW... I wonder if part of the problem ties back to the fact that spyder (2.1.10 in this case) has problems with recognizing the ipython installation. If I set the option in the preferences to start an ipython kernel at startup I get all sorts of errors/warnings in the internal console log... and several of the ipython option check boxes are greyed out, including starting an ipython interpreter console at startup - citing the reason as that it (spyder) can't find a version of ipython >= 0.10 installed on the computer in question. Odd, since it'll let me manually open an ipython interpreter from the console window menu, and ipython is clearly @ 0.13 release version on this machine.
Okay, thanks a bunch for that. Definitely not the 'nightmare' I was anticipating. Most of the ipython issues seem to be fixed in 2.2.0, and ipython starts up automatically with pylab enabled, very nice. The plots are now functioning, but are inline, not as a separate plot window. Is there an easy way to change that?
I presume that once 2.2.0 is considered stable and release-ready I should be able to just run python setup.py to 'permanently' install the new version (after removing the system installed version)?
TIA,
Monte