(requirements)
| 211 | |
| 212 | |
| 213 | def install_requirements(requirements): |
| 214 | for req in requirements: |
| 215 | cmd = [ |
| 216 | sys.executable, '-m', 'pip', 'install', '-r', |
| 217 | 'requirements/%s' % req, '-f', |
| 218 | 'https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html' |
| 219 | ] |
| 220 | run_command(cmd) |
| 221 | |
| 222 | |
| 223 | def wait_for_free_worker(workers): |
no test coverage detected
searching dependent graphs…