Unix and Linux Discussions Tagged with python |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
13,629 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
87,654 |
Shell Programming and Scripting |
|
|
|
1 |
9,838 |
Programming |
|
|
|
1 |
7,425 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
9,927 |
OS X (Apple) |
|
|
|
8 |
15,897 |
Programming |
|
|
|
4 |
5,293 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
12,599 |
Programming |
|
|
|
0 |
18,300 |
OS X (Apple) |
|
|
|
13 |
26,926 |
Programming |
|
|
|
10 |
24,110 |
Programming |
|
|
|
1 |
17,365 |
Programming |
|
|
|
0 |
14,342 |
Programming |
|
|
|
1 |
13,882 |
Programming |
|
|
|
9 |
31,913 |
Programming |
|
|
|
1 |
3,493 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
10,107 |
Shell Programming and Scripting |
|
|
|
6 |
3,575 |
UNIX for Beginners Questions & Answers |
|
|
|
18 |
32,416 |
Programming |
|
|
|
9 |
22,903 |
Programming |
|
|
|
0 |
30,366 |
Programming |
|
|
|
2 |
19,337 |
Shell Programming and Scripting |
|
|
|
6 |
7,082 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
26,823 |
Shell Programming and Scripting |
|
|
|
1 |
8,201 |
Shell Programming and Scripting |
|
|
|
5 |
3,955 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
5,591 |
Programming |
|
|
|
10 |
7,184 |
Programming |
|
|
|
9 |
5,145 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
11,901 |
Programming |
|
|
|
0 |
89,114 |
News, Links, Events and Announcements |
|
|
|
6 |
5,913 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
13,529 |
Programming |
|
|
|
2 |
13,019 |
Programming |
|
|
|
4 |
7,316 |
Shell Programming and Scripting |
|
|
|
5 |
2,252 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
3,478 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
5,905 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
13,956 |
Shell Programming and Scripting |
|
|
|
0 |
20,892 |
Programming |
isympy(1) isympy(1)
NAME
isympy - interactive shell for SymPy
SYNOPSIS
isympy [-c | --console]
isympy [ {-h | --help} | {-v | --version} ]
DESCRIPTION
isympy is a Python shell for SymPy. It is just a normal python shell (ipython shell if you have the ipython package installed) that exe-
cutes the following commands so that you don't have to:
>>> from __future__ import division
>>> from sympy import *
>>> x, y, z = symbols("xyz")
>>> k, m, n = symbols("kmn", integer=True)
So starting isympy is equivalent to starting python (or ipython) and executing the above commands by hand. It is intended for easy and
quick experimentation with SymPy. For more complicated programs, it is recommended to write a script and import things explicitly (using
the "from sympy import sin, log, Symbol, ..." idiom).
OPTIONS
-c shell, --console=shell
Use the specified shell (python or ipython) as console backend instead of the default one (ipython if present or python otherwise).
Example: isympy -c python
FILES
${HOME}/.sympy-history
Saves the history of commands when using the python shell as backend.
BUGS
The upstreams BTS can be found at <http://code.google.com/p/sympy/issues/list> Please report all bugs that you find in there, this will
help improve the overall quality of SymPy.
SEE ALSO
ipython(1), python(1)
2007-10-8 isympy(1)