Jonathan S
Jonathan S

Reputation: 39

IPython on Zsh Terminal

Ever since I installed oh-my-zsh and iTerm2 emulator for my terminal I can't seem to access ipython any longer from my terminal. Would be great if any of you can help out!

$ ipython zsh: command not found: ipython

Thxx, J

Upvotes: 0

Views: 3513

Answers (1)

unutbu
unutbu

Reputation: 880509

Configure your PATH to include the directory containing the ipython executable. Assuming ipython "worked" under /bin/sh, you could find the path to the executable using

% sh -c "which ipython"

Upvotes: 1

Related Questions