我一直想在我的.bash_profile,這看上去像這樣安裝的東西:-bash:VIM:找不到命令
# Set architecture flags
export ARCHFLAGS="-arch x86_64"
# Ensure user-installed binaries take precedence
export PATH=/usr/local/bin:$PATH
# Load .bashrc if it exists
test -f ~/.bashrc && source ~/.bashrc
我試圖路徑添加到我的pg_config文件:/應用/的Postgres 。應用程序/內容/版本/ 9.6/bin中
所以,我的.bash_profile樣子:
# Set architecture flags
export ARCHFLAGS="-arch x86_64"
# Ensure user-installed binaries take precedence
export PATH=/usr/local/bin:/Applications/Postgres.app/Contents/Versions/9.6/bin:$PATH
# Load .bashrc if it exists
test -f ~/.bashrc && source ~/.bashrc
當我試圖源I得到了文件:
-bash:/usr/local/bin:/Applications/Postgres.app/Contents/Versions/9.6/bin ::沒有這樣的文件或目錄
當我現在嘗試打開的.bash_profile我得到:
-bash:VIM:找不到命令
我做了什麼錯?
其他信息
我已經通過自制 安裝Python,PGAdmin4和Django的我已經下載Postgress.app也並試圖安裝psycopg2,當它告訴我,我沒有pg_config。所以我試圖將路徑添加到我的bash_profile中。我認爲這是正確的做法
是否在你的系統中安裝了vim? 'vim --version'返回vim版本? – sa77
@ sa77安裝vim我一直都在使用它。它剛剛停止工作 – Jonnny
看起來你已經搞亂了一些設置你的PATH(這就是爲什麼bash無法再找到vim)。你可以發佈你現在擁有的確切'.bash_profile'嗎?我懷疑'export PATH'行有錯別字(例如,額外的空格,';'而不是':'等)。 – melpomene