I am a little bit confused....
I installed anaconda on my computer (I have windows 10).
Normally, when I want to install a package I simply do "pip install package_name
" or "conda install package_name
" and it is done.
First question: what is the difference between pip and conda?
Now I tried to install xgboost and it was really complicated I tried lot of things nothings worked until I install something called miniconda.
There it works but now, when I do "conda install package_name
" it install it in miniconda3/lib/site _package
and I have to copy/paste it in Anaconda3/lib/site_package
if I want it to work.
Second question: how can I ask to the computer that "
conda install package_name
" install it directly in anaconda3 and not miniconda3?
Finally I tried to install the package "surprise" for recommended systems. Both "pip install" or "conda install" failed.
I went in github and got the file "surprise" from https://github.com/NicolasHug/Surprise
I tried to copy it in Anaconda3/lib/site_package but it doesn't work.
When I do from surprise import Reader
I did not get the error "no module name surprise
" anymore but I get "cannot import name 'Reader'
"
Last question: how can I make it work? I think I have to build it but I do not now how...
Thank you in advance for anyone that can explain all this for me :-)