liuyizhang commited on
Commit
40c7708
1 Parent(s): 31c48f1

update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -2,9 +2,12 @@
2
  import subprocess
3
 
4
  result = subprocess.run(['pip', 'install', '-e', 'segment_anything'], check=True)
5
- print(f'install segment_anything result = {result}')
6
  result = subprocess.run(['pip', 'install', '-e', 'GroundingDINO'], check=True)
7
- print(f'install GroundingDINO result = {result}')
 
 
 
8
 
9
  # os.system("pip install -e segment_anything")
10
  # os.system("pip install -e GroundingDINO")
 
2
  import subprocess
3
 
4
  result = subprocess.run(['pip', 'install', '-e', 'segment_anything'], check=True)
5
+ print(f'liuyz_install segment_anything result = {result}')
6
  result = subprocess.run(['pip', 'install', '-e', 'GroundingDINO'], check=True)
7
+ print(f'liuyz_install GroundingDINO result = {result}')
8
+
9
+ result = subprocess.run(['pip', 'list'], check=True)
10
+ print(f'liuyz_pip list result = {result}')
11
 
12
  # os.system("pip install -e segment_anything")
13
  # os.system("pip install -e GroundingDINO")