简体   繁体   中英

Can conda coexist with pip?

Maybe is a stupid question but I would like to install a python package that is in conda but not in pip. This is the package:

https://wrf-python.readthedocs.io/en/latest/installation.html

I don't have conda installed. My concern is that can conda coexist with pip? In other words, if I install conda and install that package, I would be able to use it with all the packages that I already have installed in pip?

thanks

You can do this by running

conda config --add create_default_packages pip

and pip will be installed in any new environment.

But, the whole point of conda is for it to work better than pip, so I would suggest using conda instead of pip at all times.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM