Hi Ben,
Correct me if I'm wrong but it seems help('modules') shows you the name
of every module in your Python installation. A much easier way to do
this is just writing in the console:
>>> import <TAB>
where by <TAB> I mean that you actually press the Tab key (notice the
space after import). Then, if you want to read the help of a particular
module (say numpy), you need to do
>>> import numpy
>>> numpy<Ctrl+I>
and that will show you its help (in fancy rich format) in our Object
Inspector plugin, which is above the console.
Hope this helps you to get started,
Carlos
El 01/09/13 20:32, Ben Williams escribió:
Hi,
I get the following when I type in help('modules'). Any ideas what
might be causing this? If I import any modules then I seem t be able
to use them as long as I don't use the help('modules') function. At
this point Spyder appears to crash and I can no longer use the console.
Using Spyder 2.2.0-5 within Python(x,y) 2.7.5.0, on Win7 x64 intel
machine.
I'm pretty new to Python so maybe I'm doing something wrong.
Thanks,
Ben
>>> help('modules')
Please wait a moment while I gather a list of all available modules...
INFO:OpenGL.acceleratesupport:OpenGL_accelerate module loaded
INFO:OpenGL.arrays.arraydatatype:Using accelerated ArrayDatatype
INFO:OpenGL.formathandler:Unable to load registered array format
handler numeric:
Traceback (most recent call last):
File "C:\Python27\lib\site-packages\OpenGL\arrays\formathandler.py",
line 35, in loadPlugin
plugin_class = entrypoint.load()
File "C:\Python27\lib\site-packages\OpenGL\plugins.py", line 14, in load
return importByName( self.import_path )
File "C:\Python27\lib\site-packages\OpenGL\plugins.py", line 28, in
importByName
module = __import__( ".".join(moduleName), {}, {}, moduleName)
File "C:\Python27\lib\site-packages\OpenGL\arrays\numeric.py", line
15, in <module>
raise ImportError( """No Numeric module present: %s"""%(err))
ImportError: No Numeric module present: No module named Numeric
INFO:OpenGL.formathandler:Unable to load registered array format
handler vbo:
Traceback (most recent call last):
File "C:\Python27\lib\site-packages\OpenGL\arrays\formathandler.py",
line 35, in loadPlugin
plugin_class = entrypoint.load()
File "C:\Python27\lib\site-packages\OpenGL\plugins.py", line 14, in load
return importByName( self.import_path )
File "C:\Python27\lib\site-packages\OpenGL\plugins.py", line 28, in
importByName
module = __import__( ".".join(moduleName), {}, {}, moduleName)
File "C:\Python27\lib\site-packages\OpenGL\arrays\vbo.py", line 33,
in <module>
from OpenGL import GL
ImportError: cannot import name GL
INFO:OpenGL.formathandler:Unable to load registered array format
handler vbooffset:
Traceback (most recent call last):
File "C:\Python27\lib\site-packages\OpenGL\arrays\formathandler.py",
line 35, in loadPlugin
plugin_class = entrypoint.load()
File "C:\Python27\lib\site-packages\OpenGL\plugins.py", line 14, in load
return importByName( self.import_path )
File "C:\Python27\lib\site-packages\OpenGL\plugins.py", line 28, in
importByName
module = __import__( ".".join(moduleName), {}, {}, moduleName)
File "C:\Python27\lib\site-packages\OpenGL\arrays\vbo.py", line 33,
in <module>
from OpenGL import GL
ImportError: cannot import name GL
INFO:OpenGL.GLUT.special:Using NT-specific GLUT calls with exit callbacks
WARNING:OpenGL.Tk:Expected Tk Togl installation in
C:\Python27\lib\site-packages\OpenGL\Tk\togl-win32
INFO:OpenGL.Tk:Loading Togl from:
C:\Python27\lib\site-packages\OpenGL\Tk\togl-win32
INFO:pp:Creating server instance (pp-1.6.4)
INFO:pp:Running on Python 2.7.5 win32
INFO:pp:pp local server started with 12 workers
INFO:pp:Creating server instance (pp-1.6.4)
INFO:pp:Running on Python 2.7.5 win32
INFO:pp:pp local server started with 12 workers
DEBUG:pp:Task 0 submited, function='<lambda>'
INFO:pp:Task 0 started
DEBUG:pp:Task 0 ended
Fatal Python error: pycurl: libcurl link-time version is older than
compile-time version
This application has requested the Runtime to terminate it in an
unusual way.
Please contact the application's support team for more information.
--
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.
For more options, visit https://groups.google.com/groups/opt_out.
--
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.
For more options, visit https://groups.google.com/groups/opt_out.