Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ASK] I can't getting start in WSL #1975

Closed
b856741 opened this issue Aug 24, 2023 · 5 comments
Closed

[ASK] I can't getting start in WSL #1975

b856741 opened this issue Aug 24, 2023 · 5 comments
Labels
help wanted Need help from developers

Comments

@b856741
Copy link

b856741 commented Aug 24, 2023

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 b856741 added the help wanted Need help from developers label Aug 24, 2023
@devc007
Copy link

devc007 commented Aug 26, 2023

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.

@miguelgfierro
Copy link
Collaborator

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

@b856741
Copy link
Author

b856741 commented Aug 30, 2023

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

@miguelgfierro
Copy link
Collaborator

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
Copy link
Collaborator

this should be fixed with the new release 1.2.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted Need help from developers
Projects
None yet
Development

No branches or pull requests

3 participants