I’m trying to install miniconda in a linux server. I don’t have root/sudo access, so I’m using these steps:
-
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
-
sh Miniconda3-latest-Linux-x86_64.sh
-
vim .bash_profile
-
export PATH=$HOME/miniconda3/bin:$PATH
-
esc :wq
-
source .bash_profile
When I write step 6, I’m having this error message:
-sh: 17: source: not found
I really need miniconda to run my project. Can someone help me?
Thank you!