diff options
author | Maryam Tahhan <maryam.tahhan@intel.com> | 2016-05-11 14:58:10 +0100 |
---|---|---|
committer | Maryam Tahhan <maryam.tahhan@intel.com> | 2016-05-12 10:56:25 +0000 |
commit | 2ab5e6f49172e11ade5f8701a6b052de6d94f03c (patch) | |
tree | 42939c5590f5d7eb14910e341bdd411497eca32b /docs/configguide/installation.rst | |
parent | 5d109d0f628b9b8d20c550dc27f6814fe064aabe (diff) |
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 <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>
Diffstat (limited to 'docs/configguide/installation.rst')
-rwxr-xr-x | docs/configguide/installation.rst | 23 |
1 files changed, 23 insertions, 0 deletions
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 ====================== |