Skip to content

Commit

Permalink
Fix distribution name in installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito committed Nov 17, 2019
1 parent 6ee290d commit cdff5eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/deploy.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Next, we recommend creating a virtual environment for your Webware for Python 3
This will create the virtual environment in the subdirectory ``.venv``. Of course, you can also use a different name for that directory. Now, install Webware for Python 3 into that virtual environment. Under Linux, you can do this as follows::

. .venv/bin/activate
pip install Webware>=3a
pip install "Webware-for-Python>=3a"

You will also need to install other Python packages required by your application into the virtual environment with pip, unless these are provided as part of the application, e.g. in a ``Lib`` subdirectory of the application working directory. If you want to use a Python-based WSGI server such as waitress, you need to install it into this virtual environment as well::

Expand Down
4 changes: 2 additions & 2 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Installation with Pip

With the virtual environment activated, you can now download and install Webware for Python 3 in one step using the following command::

pip install Webware>=3a
pip install "Webware-for-Python>=3a"

For developing with Webware for Python, you will probably also install "extras" as explained below.

Expand All @@ -56,7 +56,7 @@ When installing Webware for Python 3, the following "extras" can optionally be i

On your development machine, we recommend installing the full "test" environment which also includes the other two environments. To do that, you need to specify the "Extras" name in square brackets when installing Webware for Python 3::

pip install Webware[test]>=3a
pip install "Webware-for-Python[test]>=3a"


Installation from Source
Expand Down

0 comments on commit cdff5eb

Please sign in to comment.