Hi

I just installed SciPy stack on Ubuntu 14.04. Then I installed python-pyglet.
For testing it, I tried the following in python 2.7.6 interactive mode:

from sympy import symbols,Plot,sin
x=symbols('x')
Plot(5*sin(x**3)+x**2)

But the only result is « [0] : x ** 2 + 5 * sin(x ** 3), 'mode=cartesian' » and no plot window appears!!!
What's wrong? What should I do?
Thanks

Plot is deprecated (pydoc sympy.Plot). Use plot with small p instead.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.