From aa11ac2172821bbcbfe60326b4165e804af02fef Mon Sep 17 00:00:00 2001 From: Thomas NOEL Date: Thu, 19 Jul 2012 16:03:49 +0200 Subject: [PATCH] quelques echo dans le script de creation du virtualenv --- bin/polynum-build-virtualenv | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/bin/polynum-build-virtualenv b/bin/polynum-build-virtualenv index 406a895..0e8833c 100755 --- a/bin/polynum-build-virtualenv +++ b/bin/polynum-build-virtualenv @@ -19,6 +19,12 @@ VE=`basename $VEDIR` test -d $DIR || "$DIR does not exist (or is not a directory)" cd $DIR || abort "cannot cd to $DIR" + +echo "" +echo "Build PolyNum virtualenv in $VEDIR" +echo "(detailed log in $VEDIR/install.log)" +echo "" + virtualenv --system-site-packages $VE || abort "cannot create virtualenv $VE in $DIR" cd $VE @@ -26,3 +32,6 @@ cd $VE pip $PIPOPT install -U pip pip $PIPOPT install --requirement=/usr/share/doc/polynum/requirements +echo "" +echo "PolyNum virtualen created in $VEDIR" +echo ""