mirror of
https://github.com/ceph/ceph
synced 2025-04-04 15:36:24 +00:00
tools/setup-virtualenv: s/virtualenv/python -m venv/
so we don't need to use virtualenv python package for creating a virtualenv, the "venv" module in Python3 would suffice. see also https://docs.python.org/3/library/venv.html Signed-off-by: Kefu Chai <kchai@redhat.com>
This commit is contained in:
parent
3c40db975c
commit
494fea50ce
@ -40,11 +40,11 @@ TEMP=$($GETOPT --options "h" --long "help,python:" --name "$SCRIPTNAME" -- "$@")
|
||||
test $? != 0 && usage
|
||||
eval set -- "$TEMP"
|
||||
|
||||
PYTHON_OPTION=""
|
||||
PYTHON=python3
|
||||
while true ; do
|
||||
case "$1" in
|
||||
-h|--help) usage ;; # does not return
|
||||
--python) PYTHON_OPTION="--python=$2" ; shift ; shift ;;
|
||||
--python) PYTHON="$2" ; shift ; shift ;;
|
||||
--) shift ; break ;;
|
||||
*) echo "Internal error" ; exit 1 ;;
|
||||
esac
|
||||
@ -57,7 +57,7 @@ if [ -z "$DIR" ] ; then
|
||||
fi
|
||||
rm -fr $DIR
|
||||
mkdir -p $DIR
|
||||
virtualenv $PYTHON_OPTION $DIR
|
||||
$PYTHON -m venv $DIR
|
||||
. $DIR/bin/activate
|
||||
|
||||
if pip --help | grep -q disable-pip-version-check; then
|
||||
|
Loading…
Reference in New Issue
Block a user