Skip to content

Commit 6950758

Browse files
committed
kms: Add venv.sh
1 parent 698ebfe commit 6950758

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

kms/dstack-app/venv.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
3+
if [ -f ".venv/bin/activate" ]; then
4+
source .venv/bin/activate
5+
else
6+
python3 -m venv .venv
7+
source .venv/bin/activate
8+
pip install requests eth_keys cryptography
9+
fi

0 commit comments

Comments
 (0)