==============================
Displaying BioPython help text
==============================

After installing a package, you can confirm that the package was installed 
correctly by opening a Jupyter Notebook in that environment, importing the 
package and displaying its help text. In this example we will use the BioPython 
package.

#. :ref:`Start Navigator <navigator-starting-navigator>`.

#. To install the BioPython package, follow the instructions in :ref:`navigator-managing-packages`.

#. To open a Jupyter Notebook, follow the instructions in :ref:`navigator-use-environment`.

#. In the Jupyter Notebook, click the New button and select your installed Python version.

   .. figure:: /img/navigator-tutorial08.png

      ..

   |

#. Copy and paste the following code into the first cell:

   .. code-block:: none

      import Bio
      help(Bio)

#. To run the code, in the menu bar, click Cell then select Run Cells, 
   or use the keyboard shortcut Ctrl-Enter.

   The BioPython help text is displayed.
