Leex1
Results
2
comments of
Leex1
I resolved this issue by modifying both `setup_conda_env.sh` and `setup_python_env.sh`. The key point is that the original logic uses `SCRIPT_DIR` based on the runtime working directory rather than the actual...
- my `setup_conda_env.sh` (you can copy and replace yours): ```bash #!/bin/bash if [ -n "$ZSH_VERSION" ]; then SCRIPT_PATH="${(%):-%x}" else SCRIPT_PATH="${BASH_SOURCE[0]}" fi SCRIPT_DIR="$( cd "$( dirname "$SCRIPT_PATH" )" && pwd )"...