Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我应该在 ${PATH} 上写什么? 首先,我认为这是我正在处理的脚本所在的目录。 其次,我认为它是 make 或其他东西所在的目录。 但两者都错了。
${PATH}是您计算机上已经存在的路径变量的值。
${PATH}
PATH="${RTOOLS40_HOME}\usr\bin;${PATH}"正在添加${RTOOLS40_HOME}\usr\bin到现有路径,以便在需要时可以找到 RTOOLS。
PATH="${RTOOLS40_HOME}\usr\bin;${PATH}"
${RTOOLS40_HOME}\usr\bin
如果 RTOOLS 安装正确,RTOOLS40_HOME环境变量应该已经自动设置到 RTOOLS 的安装目录。
RTOOLS40_HOME