Flutter command not found

前端 未结 30 1386
独厮守ぢ
独厮守ぢ 2020-11-29 16:54
bash: flutter: command not found

Apparently, none of the flutter commands are working on the terminal of an android studio which I believe I am tryi

30条回答
  •  旧巷少年郎
    2020-11-29 17:23

    First, download the Flutter here: https://flutter.dev/docs/get-started/install/macos

    When you created the folder with Flutter SDK, open it in Terminal using the following command:

    cd ~/development
    

    If there is no development folder run this command first:

    mkdir /development
    

    After that, you need to run the unzip command. Make sure you specify the correct path to the downloaded Flutter archive file. Run the command below:

    unzip ~/Downloads/flutter_macos_1.17.1-stable.zip
    

    Setting the Flutter tool path

    In order to set up the Flutter tool path you should run this command:

    export PATH="$PATH:`pwd`/flutter/bin"
    

    Next, you need to know which shell you are using. For this run this command:

    echo $SHELL
    

    Depending on the shell run the following command: [Note, the command you will be using depends on the shell you have.]

    sudo nano ~/.zshrc
    

    or

    sudo nano /.bashrc 
    

    After that in the new window, you need to add a path to the flutter tool.

    Use the following command:

    export PATH=$PATH:~/development/flutter/bin
    

    The next thing you need to do is to check the Flutter dependencies.

    For this, run the command:

    flutter doctor
    

    This operation will help you to identify if there are any dependencies you need to install. After the results will be prepared click Agree and wait for the installation of the needed dependencies to complete the setup. enter image description here

提交回复
热议问题