MacPorts-端口:找不到命令?
MacPorts- port: command not found?
我是一名初级程序员,在 python 中制作分形音乐。我正在考虑使用 mingus 模块来播放音符,但是 mingus 需要安装 fluidsynth。我正在尝试使用 MacPorts 安装 fluidsynth。我有 fluidsynth 文件。当我运行
sudo port install fluidsynth
在我的 Mac 终端上它要求我输入密码。然后它说
sudo: port: command not found"
出了什么问题?我正在使用 macOs mojave,如果有帮助的话。
我怀疑您可能没有正确安装MacPorts
。按照 MacPorts
文档正确安装它。安装后,您可以 运行 像
这样的命令
port installed
列出所有端口。
如果可行,那么您可以这样做
source ~/.bash_profile
它应该可以工作。
从 here
查看更多可能的解决方案
正如@Ila所说here:
After lots of .bash_profile investigation, it turned out I just needed
to reboot the terminal after installing MacPorts.
我是一名初级程序员,在 python 中制作分形音乐。我正在考虑使用 mingus 模块来播放音符,但是 mingus 需要安装 fluidsynth。我正在尝试使用 MacPorts 安装 fluidsynth。我有 fluidsynth 文件。当我运行
sudo port install fluidsynth
在我的 Mac 终端上它要求我输入密码。然后它说
sudo: port: command not found"
出了什么问题?我正在使用 macOs mojave,如果有帮助的话。
我怀疑您可能没有正确安装MacPorts
。按照 MacPorts
文档正确安装它。安装后,您可以 运行 像
port installed
列出所有端口。
如果可行,那么您可以这样做
source ~/.bash_profile
它应该可以工作。 从 here
查看更多可能的解决方案正如@Ila所说here:
After lots of .bash_profile investigation, it turned out I just needed to reboot the terminal after installing MacPorts.