We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48988d2 commit e5b619fCopy full SHA for e5b619f
scripts/setup.sh
@@ -28,7 +28,8 @@ echo -e "\nUsing [4m$conda_name[0m as the conda environment name\n"
28
29
# Get Python version from Isaac Sim
30
ISAAC_PYTHON_VERSION=$(${ISAAC_SIM_PATH}/python.sh -c "import platform; print(platform.python_version())")
31
-echo Using Python version [4m$ISAAC_PYTHON_VERSION[0m matching your current Isaac Sim version
+ISAAC_PYTHON_VERSION="${ISAAC_PYTHON_VERSION##*$'\n'}" # get rid of conda activation warnings
32
+echo Using Python version [4m$ISAAC_PYTHON_VERSION[0m matching your current Isaac Sim version
33
34
# Create a conda environment with the appropriate python version
35
source $(conda info --base)/etc/profile.d/conda.sh
0 commit comments