Replies: 2 comments 11 replies
-
You have to install other dependencies. Look at the main branches Docker file. You don't need all of those things, but at least the apt-get section is needed first, then use pip install .[all] from NeMos root dir. |
Beta Was this translation helpful? Give feedback.
3 replies
-
I've tried it again with
Here is the error stack trace from
|
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello. I am struggling to run the
pytest
tests of NeMo without a GPU. Here are the steps that I've tried:docker run -it --rm -v ~/NeMo:/NeMo --shm-size=8g -p 8888:8888 -p 6006:6006 nvcr.io/nvidia/pytorch:23.08-py3
./reinstall.sh
pytest --cpu
This results in
Interrupted: 1 error during collection
:*
pynvml.nvml.NVMLError_LibraryNotFound: NVML Shared Library Not Found
*
2 skipped, 108 warnings, 1 error in 3.49s
How do I make the tests work without GPU?
Beta Was this translation helpful? Give feedback.
All reactions