docs: add gotcha for activating the python 3 env 33/13933/2
authorMaryam Tahhan <maryam.tahhan@intel.com>
Wed, 11 May 2016 13:58:10 +0000 (14:58 +0100)
committerMaryam Tahhan <maryam.tahhan@intel.com>
Thu, 12 May 2016 10:56:25 +0000 (10:56 +0000)
Add instructions for gotcha when activating the python 3 env.

Change-Id: Ia531ca796ad15354974dee13033a8d97a42c7747
Signed-off-by: Maryam Tahhan <maryam.tahhan@intel.com>
Reviewed-by: Christian Trautman <ctrautma@redhat.com>
Reviewed-by: Martin Klozik <martinx.klozik@intel.com>
Reviewed-by: Al Morton <acmorton@att.com>
docs/configguide/installation.rst

index 4ec1419..5072dee 100755 (executable)
@@ -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
 ======================