Darko Milošević
Darko Milošević

Reputation: 74

How to export path to flutter-bin on Mac?

I have a Mac book with Apple Silicon, and I've downloaded the Flutter SDK and unzipped to $HOME/development folder. After it, I've created the file .zshrc in $HOME folder using Nano text editor with the following command: nano $HOME/.zshrc Then, I've added the following line in order to export flutter/bin path:

export PATH="PATH:$HOME/development/flutter/bin"

When I saved the .zshrc file and refreshed the changes using:

source $HOME/.zshrc

when I try for example flutter doctor, I am getting the following message:

"env bash no such file or directory".

Wher I did make a misstake?

Best regards,

Upvotes: 0

Views: 2617

Answers (1)

Reza M
Reza M

Reputation: 573

You should use $ sign before PATH. It should be like this:

export PATH=$PATH:$HOME/Documents/flutter/bin.

The complete declaration for flutter:

export ANDROID_HOME=$HOME/Library/Android/sdk
export PATH=$PATH:$ANDROID_HOME/emulator
export PATH=$PATH:$ANDROID_HOME/tools
export PATH=$PATH:$ANDROID_HOME/tools/bin
export PATH=$PATH:$ANDROID_HOME/platform-tools
export PATH=$PATH:$HOME/Documents/flutter/bin

Upvotes: 1

Related Questions