cannot install on linux mint #284
duangdoock
started this conversation in
General
Replies: 1 comment 8 replies
-
This looks like a pytorch problem, maybe an older pytorch version is installed. (As far as I know, all necessary binaries should be bundled in pytorch wheel package) use venv
use --upgrade optionThis method potentially destroys the existing pip environment.
|
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
-
Hi everyone
I installed and tested successfully iw3 on Windows and would like to do it on Linux Mint.
I did all these following steps in a terminal :
sudo apt-get install git-core libmagickwand-dev libraqm-dev
git clone https://github.com/nagadomi/nunif.git
cd nunif
pip3 install -r requirements-torch.txt
pip3 install -r requirements.txt
sudo apt-get install python3-wxgtk4.0
but I get some errors after typing those following ones :
python3 -m waifu2x.download_models
python3 -m waifu2x.web.webgen
which give me this results :
Traceback (most recent call last):
File "/usr/lib/python3.10/runpy.py", line 187, in _run_module_as_main
mod_name, mod_spec, code = _get_module_details(mod_name, _Error)
File "/usr/lib/python3.10/runpy.py", line 110, in _get_module_details
import(pkg_name)
File "/home/lezamours/nunif/waifu2x/init.py", line 9, in
from .utils import Waifu2x
File "/home/lezamours/nunif/waifu2x/utils.py", line 3, in
import torch
File "/home/lezamours/.local/lib/python3.10/site-packages/torch/init.py", line 290, in
from torch._C import * # noqa: F403
ImportError: libnccl.so.2: cannot open shared object file: No such file or directory
Traceback (most recent call last):
File "/usr/lib/python3.10/runpy.py", line 187, in _run_module_as_main
mod_name, mod_spec, code = _get_module_details(mod_name, _Error)
File "/usr/lib/python3.10/runpy.py", line 110, in _get_module_details
import(pkg_name)
File "/home/lezamours/nunif/waifu2x/init.py", line 9, in
from .utils import Waifu2x
File "/home/lezamours/nunif/waifu2x/utils.py", line 3, in
import torch
File "/home/lezamours/.local/lib/python3.10/site-packages/torch/init.py", line 290, in
from torch._C import * # noqa: F403
ImportError: libnccl.so.2: cannot open shared object file: No such file or directory
Any idea? Thanks in advance for your help!
Beta Was this translation helpful? Give feedback.
All reactions