

Terjemahan disediakan oleh mesin penerjemah. Jika konten terjemahan yang diberikan bertentangan dengan versi bahasa Inggris aslinya, utamakan versi bahasa Inggris.

# Prasyarat
<a name="jupyter-prereqs"></a>

Sebelum Anda mulai, atur item berikut:
+ AWS Akun — Jika Anda belum memilikinya, mulailah dengan[Menyiapkan yang baru AWS akun](setting-up-aws.md). 
+ Pengguna AWS Identity and Access Management(IAM) dengan akses ke izin yang diperlukan untuk DataBrew — Untuk informasi selengkapnya, lihat. [Menambahkan pengguna atau grup dengan DataBrew izin](setting-up-iam-users-and-groups-for-databrew.md) 
+ Peran IAM untuk digunakan dalam DataBrew operasi — Anda dapat menggunakan default, jika `AwsGlueDataBrewDataAccessRole` dikonfigurasi. Untuk mengatur peran IAM tambahan, lihat[Menambahkan peran IAM dengan izin sumber daya data](setting-up-iam-role-to-use-in-databrew.md).
+  JupyterLab [Instalasi (versi 2.2.6 atau lebih tinggi) - Untuk informasi lebih lanjut, lihat topik berikut dalam dokumentasi: JupyterLab](https://JupyterLab.readthedocs.io/en/stable/index.html)
  + [JupyterLab prasyarat](https://JupyterLab.readthedocs.io/en/stable/getting_started/installation.html#prerequisites)
  + [JupyterLab instalasi](https://JupyterLab.readthedocs.io/en/stable/getting_started/installation.html) - Kami merekomendasikan penggunaan`pip install jupyterlab`.
+  Node.js Instalasi (versi 12.0 atau lebih besar).
+ Instalasi AWS Command Line Interface(AWS CLI) - Untuk informasi lebih lanjut, lihat[Menyiapkan AWS CLI](setting-up-the-aws-cli.md).
+ Instalasi AWS proxy Jupyter (`pip install aws-jupyter-proxy`) — Ekstensi ini digunakan dengan titik akhir AWS layanan untuk meneruskan kredensyal Anda dengan aman.AWS Untuk informasi lebih lanjut, lihat [aws-jupyter-proxy](https://github.com/aws/aws-jupyter-proxy) di. GitHub

Untuk memverifikasi bahwa Anda telah menginstal prasyarat, Anda dapat menjalankan pengujian yang mirip dengan yang berikut di baris perintah, seperti yang ditunjukkan pada contoh berikut.

```
echo "
AWS CLI:"
which aws
aws --version 
aws configure list
aws sts get-caller-identity

echo "
Python (current environment):"
which python
python --version

echo "
Node.JS:"
which node
node --version 

echo "
Jupyter:"
where jupyter
jupyter --version
jupyter serverextension list
pip3 freeze | grep jupyter
```

Outputnya akan terlihat seperti berikut ini. Direktori bervariasi menurut sistem operasi dan konfigurasi.

```
AWS CLI:
/usr/local/bin/aws 
aws-cli/2.1.2 Python/3.7.4 Darwin/19.6.0 exe/x86_64
      Name                    Value             Type    Location
      ----                    -----             ----    --------
   profile                <not set>             None    None
access_key     ****************VXW4 shared-credentials-file
secret_key     ****************MRJN shared-credentials-file
    region                us-east-1      config-file    ~/.aws/config
{
    "UserId": "",
    "Account": "111122223333",
    "Arn": "arn:aws:iam::111122223333:user/user2"
}

Python (current environment):
/usr/local/opt/python /libexec/bin/python
Python 3.8.5

Node.JS:
/usr/local/bin/node
v15.0.1

Jupyter:
/usr/local/bin/jupyter
jupyter core     : 4.6.3
jupyter-notebook : 6.0.3
qtconsole        : 4.7.5
ipython          : 7.16.1
ipykernel        : 5.3.2
jupyter client   : 6.1.6
jupyter lab      : 2.2.9
nbconvert        : 5.6.1
ipywidgets       : 7.5.1
nbformat         : 5.0.7
traitlets        : 4.3.3        

config dir: /usr/local/etc/jupyter
    aws_jupyter_proxy  enabled
    - Validating...
      aws_jupyter_proxy  OK
    jupyterlab  enabled
    - Validating...
      jupyterlab 2.2.9 OK

aws-jupyter-proxy==0.1.0
jupyter-client==6.1.7
jupyter-core==4.7.0
jupyterlab==2.2.9
jupyterlab-pygments==0.1.2
jupyterlab-server==1.2.0
```