Skip to content

Commit e5b619f

Browse files
committed
linux setup fix
1 parent 48988d2 commit e5b619f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/setup.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ echo -e "\nUsing $conda_name as the conda environment name\n"
2828

2929
# Get Python version from Isaac Sim
3030
ISAAC_PYTHON_VERSION=$(${ISAAC_SIM_PATH}/python.sh -c "import platform; print(platform.python_version())")
31-
echo Using Python version $ISAAC_PYTHON_VERSION[0m matching your current Isaac Sim version
31+
ISAAC_PYTHON_VERSION="${ISAAC_PYTHON_VERSION##*$'\n'}" # get rid of conda activation warnings
32+
echo Using Python version $ISAAC_PYTHON_VERSION matching your current Isaac Sim version
3233

3334
# Create a conda environment with the appropriate python version
3435
source $(conda info --base)/etc/profile.d/conda.sh

0 commit comments

Comments
 (0)