Skip to content

Commit

Permalink
feature(add rlang #9): install conda silently add conda bin to path
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-Baptiste-Lasselle committed Mar 9, 2024
1 parent 2d19db2 commit 93262c1
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions oci/deno-jupyter/add-rlang-kernel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,13 @@ sha256sum -c ./conda.sha256.checksum
# https://stackoverflow.com/questions/49865531/bash-script-for-anaconda-installer-and-license-agreement
mkdir -p $HOME/anaconda3
bash ${CONDA_INSTALLER_FILENAME} -b -f -p $HOME/anaconda3
export PATH=$PATH:$HOME/anaconda3
export "After conda installation, content of [$HOME/anaconda3]"
export PATH=$PATH:$HOME/anaconda3/bin
echo "After conda installation, content of [$HOME/anaconda3]"
ls -alh $HOME/anaconda3
alias $HOME/anaconda3/anaconda
ls -alh $HOME/anaconda3/bin
ls -alh $HOME/anaconda3/condabin

# alias conda=$HOME/anaconda3/condabin
conda --version
which conda
echo "# -----------"
Expand Down

0 comments on commit 93262c1

Please sign in to comment.