소스 검색

Changed port

koerschens 3 년 전
부모
커밋
40f01f9015
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      cvgpu.sh

+ 2 - 2
cvgpu.sh

@@ -5,7 +5,7 @@ python_executable="$dir/miniconda3/bin/python"
 
 if [ "$1" = "watch" ]; then
     shift
-    watch -n 10 $python_executable "$dir"/python/gpu_status.py $@
+    watch -n 10 $python_executable "$dir"/python/gpu_status.py --port 8030 $@
 else
-    $python_executable "$dir"/python/gpu_status.py $@
+    $python_executable "$dir"/python/gpu_status.py --port 8030 $@
 fi