From 102f7255461928011101795f6cee10f9b9a8a2dd Mon Sep 17 00:00:00 2001 From: Tomas Thor Jonsson Date: Mon, 23 Apr 2012 19:59:00 +0200 Subject: [PATCH] correct syntax highlighting for code-blocks --- docs/shipping/packaging.rst | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/docs/shipping/packaging.rst b/docs/shipping/packaging.rst index 5e970fe..dc83496 100644 --- a/docs/shipping/packaging.rst +++ b/docs/shipping/packaging.rst @@ -37,25 +37,28 @@ assuming this is your directory structure: - MyPackage.tar.gz Go to your command prompt and type: -:: -$ cd archive -$ python -m SimpleHTTPServer 9000 +.. code-block:: console + + $ cd archive + $ python -m SimpleHTTPServer 9000 This runs a simple http server running on port 9000 and will list all packages (like **MyPackage**). Now you can install **MyPackage** using any python package installer. Using Pip, you would do it like: -:: -$ pip install --extra-index-url=http://127.0.0.1:9000/ MyPackage +.. code-block:: console + + $ pip install --extra-index-url=http://127.0.0.1:9000/ MyPackage Having a folder with the same name as the package name is **crucial** here. I got fooled by that, one time. But if you feel that creating a folder called **MyPackage** and keeping **MyPackage.tar.gz** inside that, is *redundant*, you can still install MyPackage using: -:: -$ pip install http://127.0.0.1:9000/MyPackage.tar.gz +.. code-block:: console + + $ pip install http://127.0.0.1:9000/MyPackage.tar.gz Chishop +++++++