DEV Community

Discussion on: Conda & Dealing with Conflicting Python(s) in your system

Collapse
 
knzudgt profile image
knzudgt

@Aly Sivji, that is interesting. What script would contain your bash gogoconda function? Would you not get the same result by creating a 'gogoconda' shell script such as:

gogoconda.sh

#!/bin/bash

export PATH="/Users/alysivji/anaconda/bin:$PATH"
echo "Conda is activated"
Collapse
 
alysivji profile image
Aly Sivji • Edited

I have that function in my ~/.bash_profile. And yes, you can also have a separate script. Might be easier to collect all your scripts into a central location.