From: Maryam Tahhan Date: Wed, 11 May 2016 13:58:10 +0000 (+0100) Subject: docs: add gotcha for activating the python 3 env X-Git-Tag: colorado.1.0~71 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F33%2F13933%2F2;p=vswitchperf.git docs: add gotcha for activating the python 3 env Add instructions for gotcha when activating the python 3 env. Change-Id: Ia531ca796ad15354974dee13033a8d97a42c7747 Signed-off-by: Maryam Tahhan Reviewed-by: Christian Trautman Reviewed-by: Martin Klozik Reviewed-by: Al Morton --- diff --git a/docs/configguide/installation.rst b/docs/configguide/installation.rst index 4ec14197..5072dee0 100755 --- a/docs/configguide/installation.rst +++ b/docs/configguide/installation.rst @@ -104,6 +104,29 @@ Fedora, RedHat and Ubuntu $ cd $HOME/vsperfenv $ source bin/activate +Gotcha +^^^^^^ +.. code:: bash + $ source bin/activate + Badly placed ()'s. + +Check what type of shell you are using + +.. code:: bash + echo $shell + /bin/tcsh + +See what scripts are available in $HOME/vsperfenv/bin + +.. code:: bash + $ ls bin/ + activate activate.csh activate.fish activate_this.py + +source the appropriate script + +.. code:: bash + $ source bin/activate.csh + Working Behind a Proxy ======================