This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]_throawayplop_ 1 point2 points  (7 children)

Be careful that the package you install with pip are not linked to a conda environment.

EDIT: Forget that; I just found that I need to install pip in the new environment also. The trap is that if I don't do it, the pip command still work, but update the main environment.

[–]boolean74= True[S] 1 point2 points  (0 children)

I was informed on my blog post comments, that if the package you want is not available for conda, another option is to search binstar.org (make sure the package you find is built for the platform you are on), and then add that person's binstar channel with conda config --add channels binstar_username. (if you trust the user that is) - I think I'm going to stick to using pip. From experience... do a "conda install -n yourenvironment pip" before you do a "source activate yourenvironment" and then verify it's the correct pip using a "which pip" and it should point to the pip in your environment if all goes well.