Skip to content

Commit

Permalink
Please install chatterbot before trying to do the tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
gunthercox committed Dec 2, 2017
1 parent d2cacb4 commit a1db771
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
10 changes: 9 additions & 1 deletion docs/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,21 @@
Quick Start Guide
=================

The first thing you'll need to do to get started is install ChatterBot.

.. code-block:: bash
pip install chatterbot
See :ref:`Installation` for options for alternative installation methods.

Create a new chat bot
=====================

.. note::

If you are using Python 2.7, be sure that the unicode header is the first line of
your Python file: :code:`# -*- coding: utf-8 -*-`
your Python file: ``# -*- coding: utf-8 -*-``

.. code-block:: python
Expand Down
11 changes: 11 additions & 0 deletions docs/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,17 @@ to chat with other ChatterBot users who might be able to help.
If you believe that you have encountered an error in ChatterBot, please open a
ticket on GitHub: https://github.com/gunthercox/ChatterBot/issues/new

Installing ChatterBot
=====================

You can install ChatterBot on your system using Python's pip command.

.. code-block:: bash
pip install chatterbot
See :ref:`Installation` for alternative installation options.

Creating your first chat bot
============================

Expand Down

0 comments on commit a1db771

Please sign in to comment.