我正在尝试安装Apportable,我目前正在尝试将apportable sdk bin目录添加到路径中。就像示例app指令视频所说,我复制并粘贴它:"(echo; echo' PATH =" /Users/testuser/.apportable/SDK/bin: $ PATH"& #39;)>> 〜/ .bash_profile中; source~ / .bash_profile"进入终端,但我不断收到此错误消息:" -bash:" /Users/testuser/.bash_profile:权限被拒绝"
我不确定如何继续,或者我做错了什么。您可以提供的任何建议将不胜感激。
由于
答案 0 :(得分:0)
很奇怪,你没有自己的.bash_profile的写权限。
这是尝试的东西 -
cp /Users/testuser/.bash_profile /Users/testuser/.bash_profile-save
chmod +w .bash_profile
(echo; echo 'PATH="/Users/testuser/.apportable/SDK/bin:$PATH"') >> ~/.bash_profile; source ~/.bash_profile