source: gs3-extensions/structured-image/trunk/CREATE-VENV-PYTHON3.sh@ 36247

Last change on this file since 36247 was 36247, checked in by davidb, 23 months ago

initial cut at files to provide google vision api processing of images using the GoogleVisionImagePlugin

  • Property svn:executable set to *
File size: 647 bytes
RevLine 
[36247]1#!/bin/bash
2
3source ./setup.bash
4
5if [ ! -d "$GEXT_STRUCTURED_IMAGE_INSTALLED/virtualenv-python3" ] ; then
6 python3 -mvenv "$GEXT_STRUCTURED_IMAGE_INSTALLED/virtualenv-python3"
7else
8 echo "" >&2
9 echo "!!!!" >&2
10 echo "! VirtualEnv Python3 already exists: $GEXT_STRUCTURED_IMAGE_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_IMAGE_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.