Peralatan esensial yang paling dibutuhkan sebenarnya Flutter SDK, Android SDK, dan Teks Editor saja. Namun, karena kita butuh Android Studio untuk menginstal Android SDK, maka kita juga harus install Java JDK donk! Silahkan install Java JDK di Linux dengan perintah ini. Ran into this same issue while using the CURL command inside my Dockerfile. As Gilles pointed out, we have to install curl first. These are the commands to be added in the 'Dockerfile'. FROM ubuntu:16.04 # Install prerequisites RUN apt-get update && apt-get install -y curl CMD /bin/bash.
nginx: Linux packages
Supported distributions and versions Installation instructions RHEL/CentOS Debian Ubuntu SLES Alpine Source Packages Dynamic Modules Signatures |
Supported distributions and versions
nginx packages are available for the following Linux distributions andversions:
Version | Supported Platforms |
7.4+ | x86_64, ppc64le, aarch64/arm64 |
8.x | x86_64, aarch64/arm64 |
Version | Supported Platforms |
10.x “buster” | x86_64, i386, aarch64/arm64 |
Version | Supported Platforms |
16.04 “xenial” | x86_64, i386, ppc64el, aarch64/arm64 |
18.04 “bionic” | x86_64, aarch64/arm64 |
20.04 “focal” | x86_64, aarch64/arm64 |
20.10 “groovy” | x86_64, aarch64/arm64 |
Version | Supported Platforms |
12 | x86_64 |
15 | x86_64 |
Version | Supported platforms |
3.10 | x86_64 |
3.11 | x86_64 |
3.12 | x86_64, aarch64/arm64 |
3.13 | x86_64, aarch64/arm64 |
Installation instructions
Before you install nginx for the first time on a new machine, you need toset up the nginx packages repository.Afterward, you can install and update nginx from the repository.
RHEL/CentOS
Install the prerequisites:
To set up the yum repository, create the file named/etc/yum.repos.d/nginx.repo
with the following contents:
By default, the repository for stable nginx packages is used.If you would like to use mainline nginx packages, run the following command:
To install nginx, run the following command:
When prompted to accept the GPG key, verify that the fingerprint matches573B FD6B 3D8F BC64 1079 A6AB ABF5 BD82 7BD9 BF62
,and if so, accept it.
Debian
Install the prerequisites:
To set up the apt repository for stable nginx packages,run the following command:
If you would like to use mainline nginx packages,run the following command instead:
Set up repository pinning to prefer our packages overdistribution-provided ones:
Next, import an official nginx signing key so apt could verify the packagesauthenticity.Fetch the key:
Verify that the downloaded file contains the proper key:
The output should contain the full fingerprint573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62
as follows:
Finally, move the key to apt trusted key storage (note the 'asc' file extension change):
To install nginx, run the following commands:
Ubuntu
Install the prerequisites:
To set up the apt repository for stable nginx packages,run the following command:
If you would like to use mainline nginx packages,run the following command instead:
Set up repository pinning to prefer our packages overdistribution-provided ones:
Next, import an official nginx signing key so apt could verify the packagesauthenticity.Fetch the key:
Verify that the downloaded file contains the proper key:
Note: on Ubuntu 16.04, use the following command instead:
The output should contain the full fingerprint573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62
as follows:
Finally, move the key to apt trusted key storage (note the 'asc' file extension change):
To install nginx, run the following commands:
SLES
Install the prerequisites:
To set up the zypper repository for stable nginx packages,run the following command:
If you would like to use mainline nginx packages,run the following command instead:
Next, import an official nginx signing key so zypper/rpm could verifythe packages authenticity.Fetch the key:
Verify that the downloaded file contains the proper key:
The output should contain the full fingerprint573B FD6B 3D8F BC64 1079 A6AB ABF5 BD82 7BD9 BF62
as follows:
Finally, import the key to the rpm database:
To install nginx, run the following command:
Alpine
Install the prerequisites:
To set up the apk repository for stable nginx packages,run the following command:
If you would like to use mainline nginx packages,run the following command instead:
Next, import an official nginx signing key so apk could verifythe packages authenticity.Fetch the key:
Verify that downloaded file contains the proper key:
The output should contain the following modulus:
Finally, move the key to apk trusted keys storage:
To install nginx, run the following command:
The @nginx
tag should also be specified when installingpackages with dynamic modules:
Source Packages
Packaging sources can be found in thepackaging sources repository.
The default
branch holds packaging sources for the currentmainline version, while stable-*
branches contain latestsources for stable releases.To build binary packages, run make
indebian/
directory on Debian/Ubuntu, or inrpm/SPECS/
on RHEL/CentOS/SLES, or inalpine/
on Alpine.
Packaging sources are distributed under the same2-clause BSD-like license used by nginx.
Dynamic Modules
Main nginx package is built with all modules that do not require additionallibraries to avoid extra dependencies.Since version 1.9.11, nginx supportsdynamic modulesand the following modules are built as dynamic and shipped as separatepackages:
Signatures
Since our PGP keysand packages are located on the same server,they are equally trusted.It is highly advised to additionally verifythe authenticity of the downloaded PGP key.PGP has the “Web of Trust” concept,when a key is signed by someone else’s key,that in turn is signed by another key and so on.It often makes possible to build a chain from an arbitrary keyto someone’s key who you know and trust personally,thus verify the authenticity of the first key in a chain.This concept is described in details inGPG Mini Howto.Our keys have enough signatures,and their authenticity is relatively easy to check.
Before you start using Yarn, you'll first need to install it on your system. There are many different ways to install Yarn, but a single one is recommended and cross-platform:Install via npm
It is recommended to install Yarn through the npm package manager, which comes bundled with Node.js when you install it on your system.
Once you have npm installed you can run the following both to install and upgrade Yarn:
Alternatives
Alpine
On Alpine Linux (3.6+), you can install Yarn with apk.
Currently, there are no Alpine packages available for RC or nightly builds of Yarn. Please use the tarball:
Apk Install Curl
Installation Script
One of the easiest ways to install Yarn on macOS and generic Unix environmentsis via our shell script. You can install Yarn by running the following code inyour terminal:
The installation process includes verifying a GPG signature.View the source on GitHub
You can also specify a version by running the following code in your terminal:
See the releases for possible versions.
Manual Install via tarball
You can install Yarn by downloading a tarball andextracting it anywhere.
Before extracting Yarn, it is recommended that you verify the tarball using GPG:
Path Setup
If Yarn is not found in your PATH, follow these steps to add it and allow it to be run from anywhere.
Note: your profile may be in your .profile
, .bash_profile
, .bashrc
, .zshrc
, etc.
- Add this to your profile:
export PATH='$PATH:/opt/yarn-[version]/bin'
(the path may vary depending on where you extracted Yarn to) - In the terminal, log in and log out for the changes to take effect
To have access to Yarn’s executables globally, you will need to set up the PATH
environment variable in your terminal. To do this, add export PATH='$PATH:`yarn global bin`'
to your profile, or if you use Fish shell, simply run the command set -U fish_user_paths (yarn global bin) $fish_user_paths
Arch Linux
On Arch Linux, Yarn can be installed through the official package manager.
Currently, there are no Arch packages available for RC or nightly builds of Yarn. Please use the tarball:
Installation Script
One of the easiest ways to install Yarn on macOS and generic Unix environmentsis via our shell script. You can install Yarn by running the following code inyour terminal:
The installation process includes verifying a GPG signature.View the source on GitHub
You can also specify a version by running the following code in your terminal:
See the releases for possible versions.
Manual Install via tarball
You can install Yarn by downloading a tarball andextracting it anywhere.
Before extracting Yarn, it is recommended that you verify the tarball using GPG:
Path Setup
If Yarn is not found in your PATH, follow these steps to add it and allow it to be run from anywhere.
Note: your profile may be in your .profile
, .bash_profile
, .bashrc
, .zshrc
, etc.
- Add this to your profile:
export PATH='$PATH:/opt/yarn-[version]/bin'
(the path may vary depending on where you extracted Yarn to) - In the terminal, log in and log out for the changes to take effect
To have access to Yarn’s executables globally, you will need to set up the PATH
environment variable in your terminal. To do this, add export PATH='$PATH:`yarn global bin`'
to your profile, or if you use Fish shell, simply run the command set -U fish_user_paths (yarn global bin) $fish_user_paths
CentOS / Fedora / RHEL
On CentOS, Fedora and RHEL, you can install Yarn via our RPM package repository.
If you do not already have Node.js installed, you should also configurethe NodeSource repository:
Then you can simply:
Currently, there are no RPM packages available for RC or nightly builds of Yarn. Please use the tarball:
Installation Script
One of the easiest ways to install Yarn on macOS and generic Unix environmentsis via our shell script. You can install Yarn by running the following code inyour terminal:
The installation process includes verifying a GPG signature.View the source on GitHub
You can also specify a version by running the following code in your terminal:
See the releases for possible versions.
Manual Install via tarball
You can install Yarn by downloading a tarball andextracting it anywhere.
Before extracting Yarn, it is recommended that you verify the tarball using GPG:
Path Setup
If Yarn is not found in your PATH, follow these steps to add it and allow it to be run from anywhere.
Note: your profile may be in your .profile
, .bash_profile
, .bashrc
, .zshrc
, etc.
- Add this to your profile:
export PATH='$PATH:/opt/yarn-[version]/bin'
(the path may vary depending on where you extracted Yarn to) - In the terminal, log in and log out for the changes to take effect
To have access to Yarn’s executables globally, you will need to set up the PATH
environment variable in your terminal. To do this, add export PATH='$PATH:`yarn global bin`'
to your profile, or if you use Fish shell, simply run the command set -U fish_user_paths (yarn global bin) $fish_user_paths
Debian / Ubuntu
On Debian or Ubuntu Linux, you can install Yarn via our Debian packagerepository. You will first need to configure the repository:
On Ubuntu 16.04 or below and Debian Stable, you will also need to configure the NodeSource repository to get a new enough version of Node.js.
Then you can simply:
Note: Ubuntu 17.04 comes with cmdtest
installed by default. If you’re getting errors from installing yarn
, you may want to run sudo apt remove cmdtest
first. Refer to this for more information.
If using nvm
you can avoid the node
installation by doing:
Note: Due to the use of nodejs
instead of node
name in some distros, yarn
might complain about node
not being installed. A workaround for this is to add an alias in your .bashrc
file, like so: alias node=nodejs
. This will point yarn
to whatever version of node
you decide to use.
Path Setup
If Yarn is not found in your PATH, follow these steps to add it and allow it to be run from anywhere.
Note: your profile may be in your .profile
, .bash_profile
, .bashrc
, .zshrc
, etc.
- Add this to your profile:
export PATH='$PATH:/opt/yarn-[version]/bin'
(the path may vary depending on where you extracted Yarn to) - In the terminal, log in and log out for the changes to take effect
To have access to Yarn’s executables globally, you will need to set up the PATH
environment variable in your terminal. To do this, add export PATH='$PATH:`yarn global bin`'
to your profile, or if you use Fish shell, simply run the command set -U fish_user_paths (yarn global bin) $fish_user_paths
Gentoo Linux
On Gentoo Linux, you can install Yarn with portage.
Currently, there are no Gentoo packages available for RC or nightly builds of Yarn. Please use the tarball:
Installation Script
One of the easiest ways to install Yarn on macOS and generic Unix environmentsis via our shell script. You can install Yarn by running the following code inyour terminal:
The installation process includes verifying a GPG signature.View the source on GitHub
You can also specify a version by running the following code in your terminal:
See the releases for possible versions.
Manual Install via tarball
You can install Yarn by downloading a tarball andextracting it anywhere.
Before extracting Yarn, it is recommended that you verify the tarball using GPG:
Path Setup
If Yarn is not found in your PATH, follow these steps to add it and allow it to be run from anywhere.
Note: your profile may be in your .profile
, .bash_profile
, .bashrc
, .zshrc
, etc.
- Add this to your profile:
export PATH='$PATH:/opt/yarn-[version]/bin'
(the path may vary depending on where you extracted Yarn to) - In the terminal, log in and log out for the changes to take effect
To have access to Yarn’s executables globally, you will need to set up the PATH
environment variable in your terminal. To do this, add export PATH='$PATH:`yarn global bin`'
to your profile, or if you use Fish shell, simply run the command set -U fish_user_paths (yarn global bin) $fish_user_paths
macOS
Homebrew
You can install Yarn through the Homebrew package manager.This will also install Node.js if it is not already installed.
If you use nvm or similar, you should ensure that your PATH
lists nvm’s shims before the version of Node.js installed by Homebrew.
MacPorts
You can install Yarn through MacPorts.This will also install Node.js if it is not already installed.
Installation Script
One of the easiest ways to install Yarn on macOS and generic Unix environmentsis via our shell script. You can install Yarn by running the following code inyour terminal:
The installation process includes verifying a GPG signature.View the source on GitHub
You can also specify a version by running the following code in your terminal:
See the releases for possible versions.
Manual Install via tarball
You can install Yarn by downloading a tarball andextracting it anywhere.
Before extracting Yarn, it is recommended that you verify the tarball using GPG:
Currently, there are no Homebrew or MacPorts packages available for RC or nightly builds of Yarn. Please use the tarball:
Installation Script
One of the easiest ways to install Yarn on macOS and generic Unix environmentsis via our shell script. You can install Yarn by running the following code inyour terminal:
The installation process includes verifying a GPG signature.View the source on GitHub
You can also specify a version by running the following code in your terminal:
See the releases for possible versions.
Manual Install via tarball
You can install Yarn by downloading a tarball andextracting it anywhere.
Before extracting Yarn, it is recommended that you verify the tarball using GPG:
Path Setup
If Yarn is not found in your PATH, follow these steps to add it and allow it to be run from anywhere.
Note: your profile may be in your .profile
, .bash_profile
, .bashrc
, .zshrc
, etc.
- Add this to your profile:
export PATH='$PATH:/opt/yarn-[version]/bin'
(the path may vary depending on where you extracted Yarn to) - In the terminal, log in and log out for the changes to take effect
To have access to Yarn’s executables globally, you will need to set up the PATH
environment variable in your terminal. To do this, add export PATH='$PATH:`yarn global bin`'
to your profile, or if you use Fish shell, simply run the command set -U fish_user_paths (yarn global bin) $fish_user_paths
Upgrade Yarn
Yarn will warn you if a new version is available.To upgrade Yarn, you can do so with Homebrew.
Solus
On Solus, you can install yarn via the Solus repository.
Currently, there are no Solus packages available for RC or nightly builds of Yarn. Please use the tarball:
Installation Script
One of the easiest ways to install Yarn on macOS and generic Unix environmentsis via our shell script. You can install Yarn by running the following code inyour terminal:
The installation process includes verifying a GPG signature.View the source on GitHub
You can also specify a version by running the following code in your terminal:
See the releases for possible versions.
Manual Install via tarball
You can install Yarn by downloading a tarball andextracting it anywhere.
Before extracting Yarn, it is recommended that you verify the tarball using GPG:
Path Setup
If Yarn is not found in your PATH, follow these steps to add it and allow it to be run from anywhere.
Note: your profile may be in your .profile
, .bash_profile
, .bashrc
, .zshrc
, etc.
- Add this to your profile:
export PATH='$PATH:/opt/yarn-[version]/bin'
(the path may vary depending on where you extracted Yarn to) - In the terminal, log in and log out for the changes to take effect
To have access to Yarn’s executables globally, you will need to set up the PATH
environment variable in your terminal. To do this, add export PATH='$PATH:`yarn global bin`'
to your profile, or if you use Fish shell, simply run the command set -U fish_user_paths (yarn global bin) $fish_user_paths
Windows
There are three options for installing Yarn on Windows.
Download the installer
This will give you a .msi
file that when run will walk you through installingYarn on Windows.
If you use the installer you will first need to installNode.js.
Download InstallerDownload Installer (RC)Download Installer (Nightly)
Install via Chocolatey
Chocolatey is a package manager for Windows.You can install Chocolatey by followingthese instructions.
Once you have Chocolatey installed, you may install yarn by running thefollowing code in your console:
This will also ensure that you have Node.js installed.
Install via Scoop
Scoop is a command-line installer for Windows.You can install Scoop by followingthese instructions.
Once you have Scoop installed, you may install yarn by running thefollowing code in your console:
If Node.js is not installed, scoop will give you a suggestion to install it.Example:
Notice
Please whitelist your project folder and the Yarn cache directory (%LocalAppData%Yarn) in your antivirus software, otherwise installing packages will be significantly slower as every single file will be scanned as it’s written to disk.
Alternatives
If you are using another OS or one of the other options specific to your OSwill not work for you, there are a couple of alternatives. You will need toinstall Node.js if you don’t already have it installed.
On common Linux distributions such as Debian, Ubuntu and CentOS, it isrecommended to install Yarn via our packages instead.
Installation Script
One of the easiest ways to install Yarn on macOS and generic Unix environmentsis via our shell script. You can install Yarn by running the following code inyour terminal:
The installation process includes verifying a GPG signature.View the source on GitHub
You can also specify a version by running the following code in your terminal:
See the releases for possible versions.
Manual Install via tarball
You can install Yarn by downloading a tarball andextracting it anywhere.
Before extracting Yarn, it is recommended that you verify the tarball using GPG:
Path Setup
Unix/Linux/macOS
If Yarn is not found in your PATH, follow these steps to add it and allow it to be run from anywhere.
Note: your profile may be in your .profile
, .bash_profile
, .bashrc
, .zshrc
, etc.
- Add this to your profile:
export PATH='$PATH:/opt/yarn-[version]/bin'
(the path may vary depending on where you extracted Yarn to) - In the terminal, log in and log out for the changes to take effect
Apk Install Curly
To have access to Yarn’s executables globally, you will need to set up the PATH
environment variable in your terminal. To do this, add export PATH='$PATH:`yarn global bin`'
to your profile, or if you use Fish shell, simply run the command set -U fish_user_paths (yarn global bin) $fish_user_paths
Apk Install Curl Docker
Windows
You will need to set up the PATH
environment variable in your terminal to have access to Yarn’s binaries globally.
Add set PATH=%PATH%;C:.yarnbin
to your shell environment.
Check installation
Check that Yarn is installed by running: