6 lines
132 B
Bash
Executable File
6 lines
132 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
PIP_INSTALL="python3 -m pip install --no-cache-dir"
|
|
${PIP_INSTALL} --upgrade pip setuptools torchada
|