recommenders icon indicating copy to clipboard operation
recommenders copied to clipboard

[ASK] I can't getting start in WSL

Open b856741 opened this issue 1 year ago • 4 comments

Description

when I ran pip install recommenders[examples] , it shows q1 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
q2 in the end. Does anyone have suggestions ?

b856741 avatar Aug 24 '23 07:08 b856741

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.

devc007 avatar Aug 26 '23 09:08 devc007

Can you show the output of python -c "import recommenders; print(recommenders.__version__)"

miguelgfierro avatar Aug 26 '23 21:08 miguelgfierro

hello, it shows:Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'recommenders'

b856741 avatar Aug 30 '23 17:08 b856741

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__)"

miguelgfierro avatar Aug 31 '23 05:08 miguelgfierro

this should be fixed with the new release 1.2.0

miguelgfierro avatar May 06 '24 14:05 miguelgfierro