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.
安装 Ruby 时,我收到一个错误,因为它试图 cd 进入一个以 Macintosh 之后的空格开头/Volumes/Macintosh HD/Users/...并失败的路径。如何将位置更改为没有空格的位置或以其他方式解决此问题?
/Volumes/Macintosh HD/Users/...
通常路径周围的引号是帮助,或者是空格前的反斜杠。
“/卷/Macintosh HD/用户/...”
或者
/Volumes/Macintosh\ HD/Users/...