打开Termina时,有下面的提示,看不明白什么意思,有老师能指导吗?
-bash: evalexport PATH="/Users/QQQ/.pyenv/shims:${PATH}"
export PYENV_SHELL=bash
source '/Users/QQQ/.pyenv/libexec/../completions/pyenv.bash'
command pyenv rehash 2>/dev/null
pyenv() {
local command
command="${1:-}"
if [ "$#" -gt 0 ]; then
shift
fi
case "$command" in
rehash|shell)
eval "$(pyenv "sh-$command" "$@")";;
*)
command pyenv "$command" "$@";;
esac
}: No such file or directory
INFO: deactivate-gfortran_osx-64.sh made the following environmental changes:
-DEBUG_FFLAGS=-march=nocona -mtune=core2 -ftree-vectorize -fPIC -fstack-protector -O2 -pipe -march=nocona -mtune=core2 -ftree-vectorize -fPIC -fstack-protector -O2 -pipe -Og -g -Wall -Wextra -fcheck=all -fbacktrace -fimplicit-none -fvar-tracking-assignments
-F95=/Users/QQQ/anaconda3/bin/x86_64-apple-darwin13.4.0-gfortran
-FC=/Users/QQQ/anaconda3/bin/x86_64-apple-darwin13.4.0-gfortran
-FFLAGS=-march=nocona -mtune=core2 -ftree-vectorize -fPIC -fstack-protector -O2 -pipe
-FORTRANFLAGS=-march=nocona -mtune=core2 -ftree-vectorize -fPIC -fstack-protector -O2 -pipe
-GFORTRAN=/Users/QQQ/anaconda3/bin/x86_64-apple-darwin13.4.0-gfortran
l
这是 bash 编程,需要搞清楚的话,应该先了解一下基本的编程语法。
比如 export 是设置系统环境变量的;source 是执行某个命令
pyenv() 定义了一个函数 ……
不知道你是出于什么意图向搞明白这段代码,本质上就是一门编程语言。