I am confused about how the packages installed through pip
and conda
work together.
What I do know:
pip
andconda
install different package format. What are the implications here except thatpip
can not install theconda
package format? (which is fine for the purpose of this question since you can always use the appropriate command to install a package; I am interested in the part that follows)
Say, package A
is installed via pip
; package B
installed via conda
in an isolated conda environment custom_env
.
Now, I create a python script, which needs to use both package A
and package B
; I launch it inside the custom_env
.
Will the python script have access to package A
?