From 1aa9c2c7b9d47caa568ff93bd9c6e98b902e9c7a Mon Sep 17 00:00:00 2001 From: Michael Lazar Date: Mon, 8 Jun 2020 14:17:33 -0400 Subject: [PATCH 1/3] Update README.md --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 1961df9..c93ae45 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,20 @@ $ cd jetforce $ python setup.py install ``` +Or, install into a virtual environment: + +```bash +# Create a project directory somewhere +$ mkdir /opt/jetforce + +$ python3 -m virtualenv /opt/jetforce/venv +$ source /opt/jetforce/venv/bin/activate +$ pip install jetforce + +# The jetforce launch script will be placed here +$ /opt/jetforce/venv/bin/jetforce +``` + ## Usage Use the ``--help`` flag to view command-line options: From 7bf6657c430be4db1a8457f702cd3664250248ae Mon Sep 17 00:00:00 2001 From: Michael Lazar Date: Mon, 8 Jun 2020 14:18:19 -0400 Subject: [PATCH 2/3] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c93ae45..b2e23bf 100644 --- a/README.md +++ b/README.md @@ -39,12 +39,13 @@ $ cd jetforce $ python setup.py install ``` -Or, install into a virtual environment: +Or, install into a python virtual environment: ```bash # Create a project directory somewhere $ mkdir /opt/jetforce +# Activate a virtual environment and install jetforce $ python3 -m virtualenv /opt/jetforce/venv $ source /opt/jetforce/venv/bin/activate $ pip install jetforce From 2b2102c5084c125e122ff3dd34e2327abccc7a4b Mon Sep 17 00:00:00 2001 From: Michael Lazar Date: Mon, 8 Jun 2020 14:18:45 -0400 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b2e23bf..0dd2507 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ $ python3 -m virtualenv /opt/jetforce/venv $ source /opt/jetforce/venv/bin/activate $ pip install jetforce -# The jetforce launch script will be placed here +# The launch script will be installed here $ /opt/jetforce/venv/bin/jetforce ```