You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
305 B
Bash
14 lines
305 B
Bash
#!/bin/bash
|
|
|
|
cd `dirname "$(realpath $0)"`
|
|
cd ..
|
|
|
|
if test -d ./venv/bin; then
|
|
echo "venv already installed, please remove for new install"
|
|
exit 1
|
|
fi
|
|
|
|
python3 -m venv ./venv
|
|
./venv/bin/python -m pip install transformers
|
|
./venv/bin/python -m pip install torch
|
|
./venv/bin/python -m pip install accelerate |