[Doc] Add NumPy import to Python tutorial

This commit is contained in:
Ray Speth 2016-05-05 10:15:31 -04:00
parent 4eea27b0a4
commit f081fa3f91

View file

@ -7,9 +7,10 @@ Getting Started
---------------
Start by opening an interactive Python session, e.g. by running `IPython
<http://ipython.org/>`_. Import the Cantera Python module by running::
<http://ipython.org/>`_. Import the Cantera Python module and NumPy by running::
>>> import cantera as ct
>>> import numpy as np
When using Cantera, the first thing you usually need is an object representing
some phase of matter. Here, we'll create a gas mixture::