You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Anaconda uses virtual environments, which means that it can happen, that the Python kernel, which is used by the Jupyter notebook is not the same as the one you can run directly from the terminal. This means that if you install a package using pip from the terminal, that won't affect the kernel run by Jupyter notebook.
So try to locate the directory of Anaconda, and then look for the default environment there (maybe something like /home/your_name/anaconda/envs/some_environment_name/bin). And run the pip that can be found in this folder. After it restart Jupyter notebook.
in homework 1 exercise 3.3
when I tried to do : import wikipedia
I get this error
No module named 'wikipedia'
I tried to install wikipedia module using 'pip install wikipedia'
even I tried pip3 install wikipedia
but still the same issue
The text was updated successfully, but these errors were encountered: