From 3853c9253e4c42b49b0fe7ad581074564fc8f85c Mon Sep 17 00:00:00 2001 From: Null Set Date: Mon, 18 Mar 2024 03:02:49 -0700 Subject: [PATCH] bumped torch and torchvision version numbers bumped version numbers to avoid the following error while installing. llava 1.2.2.post1 requires torch==2.1.2, but you have torch 2.1.0 which is incompatible. llava 1.2.2.post1 requires torchvision==0.16.2, but you have torchvision 0.16.0 which is incompatible. --- docs/macOS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/macOS.md b/docs/macOS.md index 0008e5e7c..785a26be8 100644 --- a/docs/macOS.md +++ b/docs/macOS.md @@ -16,7 +16,7 @@ conda create -n llava python=3.10 -y conda activate llava python -mpip install --upgrade pip # enable PEP 660 support pip install -e . -pip install torch==2.1.0 torchvision==0.16.0 +pip install torch==2.1.2 torchvision==0.16.2 pip uninstall bitsandbytes ```