'zsh error: export:54: not valid in this context:

While messing around with zsh today and getting something configured properly for ruby, I got the following error.

/Users/secallahan/.zshrc:export:54: not valid in this context: /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/git/bin:/usr/texbin

Here is my .zshrc (around line 54, where the error occurs) file that I edited.

# Path to your oh-my-zsh configuration.
ZSH=$HOME/.oh-my-zsh

....
....

# User configuration

export $PATH=/Users/secallahan/.rvm/gems/ruby-2.1.1/bin:/Users/secallahan/.rvm/gems/ruby-2.1.1@global/bin:/Users/secallahan/.rvm/rubies/ruby-2.1.1/bin:/Users/secallahan/.rvm/bin:/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/git/bin:/usr/texbin
# export MANPATH="/usr/local/man:$MANPATH"

This was the only way I was able to make it. So then I opened a new shell and did ruby -v and got ruby2.1.1 as the current version.

Any help would be very much appreciated.



Solution 1:[1]

You left out the double quotes too. This was my case, I had to change the syntax from

export PATH=/usr/local/opt/node@12/bin/  to

export PATH="/usr/local/opt/node@12/bin:$PATH"

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Amanda Shafack