python - How to solve the issue of the conflict of anaconda and virtualenv -
i using virtualenv time , had installed anaconda. tried activate virtual environment using way of anaconda source activate helloworld . (indeed don't remember if command typed in). , environment had been activated. when tried run notebook, said libraries didn't exist if had installed them in environment. not until did realize had activated wrong environment. , close tab , cd hellowworld , did source bin/activate . late. got output prepending /home/lcc/anaconda3/envs/bin path , environment not activated expectedly. know how solve issue? thanks! here full content of activate file under /hello/world : #!/bin/bash # determine directory containing script if [[ -n $bash_version ]]; _script_location=${bash_source[0]} shell="bash" elif [[ -n $zsh_version ]]; _script_location=${funcstack[1]} shell="zsh" else echo "only bash , zsh supported" return 1 fi _conda_dir=$(dirname "$_script_location") if [ $# -gt 1 ];...