Difference between revisions of "Software for integrating ODEs"

From Introduction to Reactor Design: 3K4
Jump to navigation Jump to search
(Created page with "== Python == === Mac computers === * Start the built-in Mac program called <tt>Terminal</tt> * Type the following commands: <syntaxhighlight lang="bash"> sudo easy_install ip...")
 
m
Line 7: Line 7:
sudo easy_install ipython
sudo easy_install ipython
sudo easy_install readline
sudo easy_install readline
ipython
</syntaxhighlight>
and you should some something like:
<syntaxhighlight lang="text">
Kevins-MacBook-Pro:~ kevin$ ipython
Python 2.7.2 (default, Jun 20 2012, 16:23:33)
Type "copyright", "credits" or "license" for more information.
IPython 0.13.1 -- An enhanced Interactive Python.
?        -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help      -> Python's own help system.
object?  -> Details about 'object', use 'object??' for extra details.
In [1]:
</syntaxhighlight>
</syntaxhighlight>

Revision as of 13:07, 11 February 2013

Python

Mac computers

  • Start the built-in Mac program called Terminal
  • Type the following commands:
sudo easy_install ipython
sudo easy_install readline
ipython

and you should some something like:

Kevins-MacBook-Pro:~ kevin$ ipython
Python 2.7.2 (default, Jun 20 2012, 16:23:33) 
Type "copyright", "credits" or "license" for more information.

IPython 0.13.1 -- An enhanced Interactive Python.
?         -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help      -> Python's own help system.
object?   -> Details about 'object', use 'object??' for extra details.

In [1]: