On Sat, May 25, 2013 at 7:01 AM, benjamin kary wrote: > Hello, > > I have been working with spyder for a month now. I have been ignoring the > fact that my Anaconda install seems to only allow me to open a version 1.1 > instance, even when I navigate through the 2.2 folder and start the > program. I am trying to work with sparse matrices through the scipy.sparse > module and I have run into a barrier when I try to use the diags function > which was added in a newer version of scipy. It seems like everything I > have is outdated even though all the folders within Anaconda are for the > current versions like the scipy 0.12 that has the diags function. > > Any suggestions?
It sounds like you may have a couple of different Python environments installed on your system, and Spyder 2.2 is living in one while Spyder 2.1 is living in the Anaconda one. Keep in mind that Anaconda creates it own Python environment apart from the typical system Python install locations, and to get any package running in that environment requires that you install it into that environment directly. The most common way to do that would be through the conda package management system. See docs here: http://docs.continuum.io/anaconda/index.html Incidentally, Anaconda version 1.5 now includes Spyder 2.2, so an upgrade would probably get you what you are looking for from a Spyder perspective. For other Anaconda-specific questions, you will get more mileage on the Anaconda mailing list here: https://groups.google.com/a/continuum.io/forum/#!forum/anaconda They could help with your questions about specific SciPy versions that ship with their install. -- You received this message because you are subscribed to the Google Groups "spyder" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/spyderlib?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
