-
Hi everyone, Sorry if my question is naive. I installed the python package Am I right ? If so, I did not know a conda package could modify Thank you, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The answer to the question in the title is certainly yes :) I don't know much about how conda behaves on various systems though unfortunately. I do know by default that it installs into a particular conda env, and the directory for binaries for an env is unlikely to be pip on various distros, if you install it to the system python via e.g. Beyond that as I say I'm not sure what conda does on various distros but you could try it out in a container and see perhaps, or someone else may know. |
Beta Was this translation helpful? Give feedback.
The answer to the question in the title is certainly yes :)
I don't know much about how conda behaves on various systems though unfortunately. I do know by default that it installs into a particular conda env, and the directory for binaries for an env is unlikely to be
/usr/bin
, but I don't know whether any Linux distributions' conda package have the base conda environment be that, nor do I know whether they make installing things into it not require root. It seems unlikely (especially non-root), but remotely possible.pip on various distros, if you install it to the system python via e.g.
sudo apt install python3-pip
on some Debianish system, will indeed then havesudo pip install foo
in…