LoginSignup
0
1

More than 5 years have passed since last update.

raspbrryPIでインストールの仕方

Last updated at Posted at 2018-04-13

ラズベリーパイを新たに購入しわくわくしながら設定しますが、やり方をホームページを参照しながらやると思います。ホームページを参照しながらソフトをインストールするには幾つかの方法があります。

たとえばドーロ系のソフトgimp、続けて日本語変換ソフトmozcをインストールするとしましょう。

一つづつこまめにタイプする

sudo apt-get install gimp

インストールするかを聞いてくるので Yを押します。
sudo apt-get install fcitx-mozc

またインストールするかを聞いてくるので Yを押します。

-yをつける

あらかじめインストールするかと聞いてくるのがわかっているので -yを使えばインストールするか聞いてこなくなります。
sudo apt-get install gimp -y
sudo apt-get install fcitx-mozc -y

一行にまとめる

sudo apt-get install gimp fcitx-mozc

または&&で結ぶこともできます。

sudo apt-get update && sudo apt-get upgrade -y

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1