Spaces:
Running
on
T4
Running
on
T4
Specified directory names in startup.sh
Browse files- startup.sh +3 -4
startup.sh
CHANGED
@@ -1,8 +1,7 @@
|
|
1 |
#!/bin/sh
|
2 |
|
3 |
export CC=/usr/bin/gcc-11 # this ensures that gcc 11 is being used for compilation
|
4 |
-
cd models/GroundingDINO/ops
|
5 |
-
python setup.py build install
|
6 |
-
python test.py # should result in 6 lines of * True
|
7 |
-
pip install git+https://github.com/facebookresearch/segment-anything.git
|
8 |
cd ../../../
|
|
|
1 |
#!/bin/sh
|
2 |
|
3 |
export CC=/usr/bin/gcc-11 # this ensures that gcc 11 is being used for compilation
|
4 |
+
cd ./models/GroundingDINO/ops
|
5 |
+
python ./setup.py build install
|
6 |
+
python ./test.py # should result in 6 lines of * True
|
|
|
7 |
cd ../../../
|