this command output latex in online Env
solve(x**2 - 33*x + 20*13-14**2, x)
same command outputs a plaintext on my local Env.
a simpler one could be rendered successfully.
did I missing something?
this command output latex in online Env
solve(x**2 - 33*x + 20*13-14**2, x)
same command outputs a plaintext on my local Env.
a simpler one could be rendered successfully.
did I missing something?
You need to initiate session first by calling init_session()
If you plan to work in an interactive calculator-type session, the
init_session()
function will automatically import everything in SymPy, create some common Symbols, setup plotting, and runinit_printing()
from sympy import init_session
init_session()
x = 5
solve(x**2 - 33*x + 20*13 - 14**2, x)