echo -e '\n\n# Function to Initialize the Anaconda Environment' >> $HOME/.bash_profile echo 'mypython () {' >> $HOME/.bash_profile echo 'source $HOME/opt/anaconda3/etc/profile.d/conda.sh' >> $HOME/.bash_profile echo 'conda activate' >> $HOME/.bash_profile echo '}' >> $HOME/.bash_profile
mypython