We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82b4f77 commit db06cf0Copy full SHA for db06cf0
2 files changed
devops/install.sh
@@ -1,11 +1,17 @@
1
#!/bin/bash
2
set -e
3
4
-echo "Installing dependencies..."
+echo "Installing compatible numpy..."
5
+pip install "numpy>=1.21.0,<2.0.0"
6
+
7
+echo "Installing PyTorch dependencies..."
8
pip install -r requirements-torch.txt --index-url https://download.pytorch.org/whl/cu121
9
10
+echo "Installing other dependencies..."
11
+pip install -r requirements.txt
12
13
echo "Installing FAISS..."
-pip install faiss-cpu==1.7.4
14
+pip install faiss-cpu==1.12.0
15
16
echo "Installing project..."
17
pip install -e .
requirements-torch.txt
@@ -1,3 +1,3 @@
torch==2.2.0+cu121
torchaudio==2.2.0+cu121
-torchvision==0.1.6
+torchvision==0.17.0+cu121
0 commit comments