gpt4 book ai didi

terminal - 在终端安装Sublime Text的命令行工具 'subl',权限被拒绝?

转载 作者:行者123 更新时间:2023-12-01 16:43:55 26 4
gpt4 key购买 nike

我正在尝试从终端使用 Sublime Text,例如通过输入 subl

我正在按照 Sublime Text 网站上的步骤进行操作:

Setup

The first task is to make a symlink to subl. Assuming you've placed Sublime Text 2 in the Applications folder, and that you have a ~/bin directory in your path, you can run:

ln -s "/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl" ~/bin/subl

我不断收到权限被拒绝:~/bin/subl:权限被拒绝

我一直在寻找类似的问题,但找不到适用的问题。有人能指出我正确的方向吗?

最佳答案

我假设您没有 bin 目录。您可以执行以下操作:

cd 
mkdir bin
sudo ln -s "/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl" ~/bin/subl

ln -s 将在您的 bin 目录中创建 subl 文件的别名,您将能够运行该命令。

如果这仍然不起作用,您将必须编辑您的 .bash_profile。您可以通过以下命令来完成此操作:(注意:为此,您需要已经完成上述步骤。)

  1. 打开您的 .bash_profile:

    cd                  // this will get you back to home directory
    vim .bash_profile // this will open your .bash_profile file
  2. 编辑.bash_profile:按 I 进入“插入”模式并添加以下内容:

    export PATH=$PATH:~/bin
  3. 保存并退出。按 Esc 进入命令模式:

    :wq   // saves and close file
    exit // exits terminal
  4. 重新打开终端:

    subl --help

这应该会显示 Sublime Text 的帮助。

关于terminal - 在终端安装Sublime Text的命令行工具 'subl',权限被拒绝?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10196449/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com