• .bashrc ```bash export PATH=”/home/jarvis/tools/miniconda3/bin:$PATH” export TERM=”xterm-256color”

    function act() { if [ $# -eq 0 ]; then source activate tf-1.13 else source acitvate “$1” fi
    }

    function actl() { conda env list }

    function dea() { conda deactivate } ```