We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbd6732 commit 106cc5fCopy full SHA for 106cc5f
utils.sh
@@ -24,7 +24,7 @@ function error() {
24
function install_deps() {
25
EXAMPLE_NAME=$1
26
echo "] $EXAMPLE_NAME: installing requirements"
27
- [[ -f requirements.txt ]] || { error "requirements.txt not found; skipping"; return; }
+ [[ -f requirements.txt ]] || return
28
for req in $(cat requirements.txt); do
29
# testing the installed version of torch, so don't pip install it.
30
if [[ "$req" != "torch" ]]; then
0 commit comments