bagaimana menginstal mongodb di raspberry

1	# Install the MongoDB 4.4 GPG key:
2	wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -
3	
4	# Add the source location for the MongoDB packages:
5	echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list
6	
7	# Download the package details for the MongoDB packages:
8	sudo apt-get update
9	
10	# Install MongoDB:
11	sudo apt-get install -y mongodb-org
Calm Chimpanzee