Added #!/bin/sh to head of startup.sh
Browse files- startup.sh +2 -0
startup.sh
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
|
|
|
|
|
| 1 |
export CC=/usr/bin/gcc-11 # this ensures that gcc 11 is being used for compilation
|
| 2 |
cd models/GroundingDINO/ops
|
| 3 |
python setup.py build install
|
|
|
|
| 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
|