conda equivalent of pip install --user
See -p
option here:
-p PATH, --prefix PATH
Full path to environment prefix.
So to install to, say, local
under your home directory, do:
conda install -p $HOME/local packagename
Note, however, this is not a "clean" install as it adds a bunch of conda-related files.
I don't think it's possible. Use virtual environments (conda create
).