I am using Stand alone Python for Windows( http://arctrix.com/nas/python/standalone.html ), which is actually python 2.4.1 1. there is no readline lib for windows python release, so I think the lines that use readline in isympy should be in a try...except... block
2. what is the py lib in G:\python24\Lib\site-packages\sympy \conftest.py? #conftest.py starts import py #this makes py.test put sympy directory into the sys.path, so that we can #"import sympy" from tests nicely rootdir = py.magic.autopath().dirpath() #conftest.py ends 3. I can't plot in sympy when I try to run this file #***t1.py starts*** from sympy import symbols, Plot x,y,z = symbols('xyz') Plot(x*y**3-y*x**3) #***t1.py ends*** I get: Traceback (most recent call last): File "t1.py", line 3, in ? Plot(x*y**3-y*x**3) File "G:\python24\lib\site-packages\sympy\plotting\__init__.py", line 16, in Plot import plot File "G:\python24\lib\site-packages\sympy\plotting\plot.py", line 4,in ? from plot_axes import PlotAxes File "G:\python24\lib\site-packages\sympy\plotting\plot_axes.py", line 2, in ? from pyglet import font File "G:\python24\lib\site-packages\sympy\plotting\pyglet\font \__init__.py", line 80, in ? from pyglet import image File "G:\python24\lib\site-packages\sympy\plotting\pyglet\image \__init__.py", line 1945, in ? _codecs.add_default_image_codecs() File "G:\python24\lib\site-packages\sympy\plotting\pyglet\image \codecs\__init__.py", line 166, in add_default_image_codecs import pyglet.image.codecs.gdiplus File "G:\python24\lib\site-packages\sympy\plotting\pyglet\image \codecs\gdiplus.py", line 52, in ? gdiplus = windll.gdiplus File "G:\python24\lib\site-packages\ctypes\__init__.py", line 387, in __getattr__ dll = self._dlltype(name) File "G:\python24\lib\site-packages\ctypes\__init__.py", line 312, in __init__ self._handle = _dlopen(self._name, mode) WindowsError: (126, '') Thanks --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to sympy@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sympy?hl=en -~----------~----~----~----~------~----~------~--~---