Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

No cookies to display.

Instalar Flutter en Mac

Tiempo de lectura: 2 minutos

Hola, hoy vamos a aprender cómo podemos instalar Flutter en Mac.

Primero abrimos un terminal y creamos una carpeta nueva para instalar flutter

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
mkdir flutter_instalation
mkdir flutter_instalation
mkdir flutter_instalation

Ahora descargamos usando git el repositorio de flutter

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
git clone https://github.com/flutter/flutter.git
git clone https://github.com/flutter/flutter.git
git clone https://github.com/flutter/flutter.git

Y creamos la variable de flutter, para ello hacemos pwd para ver el directorio actual

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
/Users/<user>/flutter_instalation
/Users/<user>/flutter_instalation
/Users/<user>/flutter_instalation

En <user> aparece nuestro usuario de sistema.

Ahora creamos el PATH dela siguiente forma:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
export PATH="$PATH:/Users/<user>/flutter_instalation/flutter/bin"
export PATH="$PATH:/Users/<user>/flutter_instalation/flutter/bin"
export PATH="$PATH:/Users/<user>/flutter_instalation/flutter/bin"

Para almacenar la configuracion:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
vim ~/.zshrc
vim ~/.zshrc
vim ~/.zshrc

Y pegamos la línea de arriba:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
export PATH="$PATH:/Users/<user>/flutter_instalation/flutter/bin"
export PATH="$PATH:/Users/<user>/flutter_instalation/flutter/bin"
export PATH="$PATH:/Users/<user>/flutter_instalation/flutter/bin"

Y guardamos pulsando :wq

Ahora lanzamos flutter doctor

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
sudo flutter doctor
sudo flutter doctor
sudo flutter doctor

Ahora instalamos Android Studio de este link: https://developer.android.com/studio/index.html

Una vez instalamos, lo abrimos e instalamos el SDK de Android (tenemos que aceptar antes las licencias que aparecen en la izquierda). Le damos a siguiente y se instalará el SDK.

Para comprobar que está todo instalado correctamente volvemos a ejecutar flutter doctor.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
sudo flutter doctor
sudo flutter doctor
sudo flutter doctor

[✓] Android Studio (version 2022.2)

Como extra, se recomienda instalar Chrome para ejecutar web desarrollando Flutter. https://www.google.com/intl/es_es/chrome/

Si nos aparece que no se ha instalado algún componente como Android toolchain:

[!] Android toolchain – develop for Android devices (Android SDK version 34.0.0)
✗ cmdline-tools component is missing
Run path/to/sdkmanager --install "cmdline-tools;latest"
See https://developer.android.com/studio/command-line for more details.
✗ Android license status unknown.
Run flutter doctor --android-licenses to accept the SDK licenses.
See https://flutter.dev/docs/get-started/install/macos#android-setup for
more details.

Intentamos de nuevo instalarlo:

  • Abrimos el SDK manager de Android Studio y pulsamos en More actions:
  • Elegimos SDK Tools.
  • Elegimos instalar Android SDK command line tools.
  • Pulsamos en Apply.

Para solucionar ✗ Android license status unknown. tenemos que ejecutar el suiguiente comando:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
flutter doctor --android-licenses
flutter doctor --android-licenses
flutter doctor --android-licenses

Y aceptamos las licencias que nos pida.

[✓] Android toolchain – develop for Android devices

Ahora también tendremos que instalar xcode. Para ello vamos a la tienda de aplicaciones App Store y buscamos Xcode, y lo instalamos.

Una vez instalado escribimos en el terminal:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
sudo xcode-select --install
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -runFirstLaunch
sudo xcode-select --install sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer sudo xcodebuild -runFirstLaunch
sudo xcode-select --install
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -runFirstLaunch

Y finalmente si nos dice que:

✗ CocoaPods installed but not working.

Tenemos que reinstalar CocoaPods para ello hacemos lo siguiente:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
curl -L https://get.rvm.io | bash -s stable
curl -L https://get.rvm.io | bash -s stable
curl -L https://get.rvm.io | bash -s stable

Ahora cerramos el terminal y utilizamos este:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
rvm install ruby-2.7.2
rvm use ruby-2.7
rvm --default use 2.7
rvm install ruby-2.7.2 rvm use ruby-2.7 rvm --default use 2.7
rvm install ruby-2.7.2

rvm use ruby-2.7  

rvm --default use 2.7

Ahora instalamos

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
sudo gem install cocoapods
sudo gem install cocoapods
 sudo gem install cocoapods

Tarda un rato y comprobamos de nuevo con flutter doctor

3

Deja un comentario