source: gs3-extensions/structured-audio/trunk/CREATE-VENV-PYTHON3.sh@ 37529

Last change on this file since 37529 was 36132, checked in by davidb, 2 years ago

Changes as a result of testing on Linux machine in the DL lab

  • Property svn:executable set to *
File size: 647 bytes
Line 
1#!/bin/bash
2
3source ./setup.bash
4
5if [ ! -d "$GEXT_STRUCTURED_AUDIO_INSTALLED/virtualenv-python3" ] ; then
6 python3 -mvenv "$GEXT_STRUCTURED_AUDIO_INSTALLED/virtualenv-python3"
7else
8 echo "" >&2
9 echo "!!!!" >&2
10 echo "! VirtualEnv Python3 already exists: $GEXT_STRUCTURED_AUDIO_INSTALLED/virtualenv-python3" >&2
11 echo "!!!!" >&2
12 echo "" >&2
13 echo "" >&2
14fi
15
16echo "****"
17echo "* To activate this version of python, enter:"
18echo "* source \"$GEXT_STRUCTURED_AUDIO_INSTALLED/virtualenv-python3/bin/activate\""
19echo "*"
20echo "* Then install the following Python module(s) with:"
21echo "* pip install pyannote"
22echo "****"
23
24
Note: See TracBrowser for help on using the repository browser.