recommenders
recommenders copied to clipboard
[ASK] I can't getting start in WSL
Description
when I ran pip install recommenders[examples]
, it shows
on the bottom.
when I emitted and ran the next command
python -m ipykernel install --user --name <environment_name> --display-name <kernel_name>
in wsl , it shows: /home/bcs109110/miniconda3/envs/surprise/bin/python: No module named ipykernel
. when I tried to download ipykernel, it shows
in the end.
Does anyone have suggestions ?
Hello, I'm new to this community. If it's alright, could you please explain what you're currently working on or trying to achieve? I'm eager to learn more and get involved.
Can you show the output of python -c "import recommenders; print(recommenders.__version__)"
hello, it shows:Traceback (most recent call last):
File "
yeah, so it seems that recommenders was not installed properly. It's weird because I see recommenders within the installed libraries in the first screenshot. Maybe you are not using the right env. Try:
conda create -n recommenders python=3.9.16
conda activate recommenders
pip install recommenders[examples]
python -c "import recommenders; print(recommenders.__version__)"
this should be fixed with the new release 1.2.0