user2149780
user2149780

Reputation: 175

Command not found: Path on iterm using zsh?

Whenever I start up an iTerm2 window, I get the error .zshrc:1: command not found: Path without running anything on the command line.

My .zshrc file contains

export ZSH=/Users/[usr]/.oh-my-zsh
plugins=(git)
source $ZSH/oh-my-zsh.sh
export WORKON_HOME=$HOME/.virtualenvs
export PROJECT_HOME=$HOME/Devel
source /usr/local/bin/virtualenvwrapper.sh

Upvotes: 0

Views: 2004

Answers (1)

sel-fish
sel-fish

Reputation: 4486

The first line of your .zshrc is :

Path to your oh-my-zsh installation.

you should comment it :

# Path to your oh-my-zsh installation.

Upvotes: 2

Related Questions