Fix readme Pygments package not found

Change-Id: Ibb9dd3a73d8067c5cf50b51c598994b2d51d2682
This commit is contained in:
zhurong 2018-10-10 11:02:04 +08:00
parent 16f95722ca
commit 60408a506e

View File

@ -11,37 +11,22 @@ Quickstart
---------- ----------
Install the latest version of yaql: Install the latest version of yaql:
.. code-block:: console
pip install yaql>=1.0.0 pip install yaql>=1.0.0
..
Run yaql REPL: Run yaql REPL:
.. code-block:: console
yaql yaql
..
Load a json file: Load a json file:
.. code-block:: console
yaql> @load my_file.json yaql> @load my_file.json
..
Check it loaded to current context, i.e. `$`: Check it loaded to current context, i.e. `$`:
.. code-block:: console
yaql> $ yaql> $
..
Run some queries: Run some queries:
.. code-block:: console
yaql> $.customers yaql> $.customers
... ...
yaql> $.customers.orders yaql> $.customers.orders
@ -51,7 +36,6 @@ Run some queries:
yaql> $.customers.groupBy($.sex) yaql> $.customers.groupBy($.sex)
... ...
yaql> $.customers.where($.orders.len() >= 1 or name = "John") yaql> $.customers.where($.orders.len() >= 1 or name = "John")
..
Project Resources Project Resources
----------------- -----------------