-
I just installed a K80 and I am trying to run VoxNovel but it is telling me my driver is too old and to update or to compile CUDA from source, which I did, the K80 runs on 11.4 but I see it is compatible with 11.8 I was looking at the linux requirements and it shows CUDA 12 as needed to run VoxNovel is this correct or is there any way I can get this to run with 11.8? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 8 comments 37 replies
-
It should run fine with CUDA 11.8I know this because:As in order to fix Headless VoxNovel Google Colab I HAD to downgrade the Google Colab env to CUDA 11.8 to get it to run in the first place Referenced Google Colab: https://colab.research.google.com/drive/15pp2hFBo2fD3legDQfWY5DMt-aI-HKKF?usp=sharing |
Beta Was this translation helpful? Give feedback.
-
I keep getting this error when starting up, not sure exactly how to proceed, I have been trying to get this to work and I am not sure what I am doing wrong |
Beta Was this translation helpful? Give feedback.
-
Testing on my end in a Google Colab right now... |
Beta Was this translation helpful? Give feedback.
-
I mean it work in Google Colab on my end with CUDA 11.8 See full run details in this ipynb colab file |
Beta Was this translation helpful? Give feedback.
-
I didn’t even know that was an option, I’ll have to look into that.I’m kind of new to this whole thing but I’ve been running Linux exclusively for 17 years On Oct 1, 2024, at 16:23, Drew Thomasson ***@***.***> wrote:
Oh, also why not install miniconda and just set up two different conda python envs with different pips for both programs?
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Perfect, I will do this tomorrow, if I can’t figure something out I may hit you up for more advice if you don’t mind.On Oct 1, 2024, at 20:14, Drew Thomasson ***@***.***> wrote:
lol yeah,
You might already have it installed actually from VoxNovel
also if you used the auto-installer command for VoxNovel then you probs already have conda installed, cause that should be doing that,
try typing in
conda env list
and it should show the the conda envs that exist
to activate one "start using one" type conda activate envName
to create one you can do something like this for instance
conda create --name {yourCustomeEnvName} python={pythonNUMBER}
Example for creating a conda env named booknlp that uses python 3.7 and how to activate it:
conda create --name booknlp python=3.7
conda activate booknlp
#to deactivate type:
conda deactivate
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Sounds like a plan 👍 |
Beta Was this translation helpful? Give feedback.
-
so Im running into the same issue, I installed VoxNovel thinking it would keep my version of Pytorch "2.1.0 cu118" but it uninstalled that version and installed some other version and now it will not run the GPU, its saying again UserWarning: CUDA initialization: The NVIDIA driver on your system is too old (found version 11040). Please update your GPU driver by downloading and installing a new version from the URL: http://www.nvidia.com/Download/index.aspx Alternatively, go to: https://pytorch.org to install a PyTorch version that has been compiled with your version of the CUDA driver. (Triggered internally at ../c10/cuda/CUDAFunctions.cpp:108.) when I attempt to install the proper version it gives this error I tried both PIP and Conda to install ill add both below pip install torch==2.1.0 torchvision==0.16.0 torchaudio==2.1.0 --index-url https://download.pytorch.org/whl/cu118 conda install pytorch==2.1.0 torchvision==0.16.0 torchaudio==2.1.0 pytorch-cuda=11.8 -c pytorch -c nvidia
LibMambaUnsatisfiableError: Encountered problems while solving:
Could not solve for environment specs not sure what I'm doing wrong |
Beta Was this translation helpful? Give feedback.
I got it to work, its using CUDA and my GPU
I did what you said and made a separate conda env.
then I did a manual install and resolved dependencies manually using the ubuntu_requirements.txt and resolving dependencies as they were shown in the error messages.