2016-11-28 74 views
0

我一直想在我的.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中。我認爲這是正確的做法

+0

是否在你的系統中安裝了vim? 'vim --version'返回vim版本? – sa77

+0

@ sa77安裝vim我一直都在使用它。它剛剛停止工作 – Jonnny

+3

看起來你已經搞亂了一些設置你的PATH(這就是爲什麼bash無法再找到vim)。你可以發佈你現在擁有的確切'.bash_profile'嗎?我懷疑'export PATH'行有錯別字(例如,額外的空格,';'而不是':'等)。 – melpomene

回答

0

@melpomene和@Jdamian我認爲就在這裏。我遇到了麻煩試圖然後找到並打開我的.bash_profile,因爲我無法使用終端來運行:

defaults write com.apple.finder AppleShowAllFiles YES

值得慶幸的是這個答案幫助,但:https://apple.stackexchange.com/a/186378/70982

我在取景器瀏覽到我的〜/文件夾並運行 ⌘CMD + ⇧SHIFT +

開業崇高和我的一條小路已被寫成這樣:

export PATH=/usr/local/bin:/Applications/Postgres.app/Contents/Versions/9.6/bin: $PATH

所以我刪除了回車所以它適合所有在一行,並且似乎幫助。我現在可以打開Vim