Using Komodo IDE as Text editor from the OS X terminal
- by lexu
According to this URL I should be able to start Komodo IDE from the command line when I want to edit a file.
I set up the symbolic link using (on single line)
ln -sf "/Applications/Komodo IDE.app/Contents/MacOS/komodo"
/Users/lexu/bin/komodo
but when I type
afg-2:~ lexu$ komodo .bash_profile
I get
dyld: Library not loaded:
/usr/lib/libsqlite3.dylib Referenced
from:
/System/Library/Frameworks/Security.framework/Versions/A/Security
Reason: Incompatible library version:
Security requires version 9.0.0 or
later, but libsqlite3.dylib provides
version 1.0.0 /Applications/Komodo
IDE.app/Contents/MacOS/run-mozilla.sh:
line 131: 4370 Trace/BPT trap
"$prog" ${1+"$@"}
and a dialog that says
My guess is I need to somehow let Komodo know it needs to use different libraries?
Does someone have this working?