DaSE-Computer-Vision-2021
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

15 行
487 B

#!/bin/bash
# what real Python executable to use
#PYVER=2.7
#PATHTOPYTHON=/usr/local/bin/
#PYTHON=${PATHTOPYTHON}python${PYVER}
PYTHON=$(which $(readlink .env/bin/python)) # only works with python3
# find the root of the virtualenv, it should be the parent of the dir this script is in
ENV=`$PYTHON -c "import os; print(os.path.abspath(os.path.join(os.path.dirname(\"$0\"), '..')))"`
# now run Python with the virtualenv set as Python's HOME
export PYTHONHOME=$ENV
exec $PYTHON "$@"