We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ff0ad4 commit 26a929aCopy full SHA for 26a929a
backend/python/voxcpm/install.sh
@@ -9,7 +9,12 @@ else
9
fi
10
11
installRequirements
12
-
+
13
+if [ "x${USE_PIP}" == "xtrue" ]; then
14
+ pip install "setuptools<70.0.0"
15
+else
16
+ uv pip install "setuptools<70.0.0"
17
+fi
18
# Apply patch to fix PyTorch compatibility issue in voxcpm
19
# This fixes the "Dimension out of range" error in scaled_dot_product_attention
20
# by changing .contiguous() to .unsqueeze(0) in the attention module
0 commit comments