raspbrryPIでインストールの仕方
ラズベリーパイを新たに購入しわくわくしながら設定しますが、やり方をホームページを参照しながらやると思います。ホームページを参照しながらソフトをインストールするには幾つかの方法があります。
たとえばドーロ系のソフト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
Author And Source
この問題について(raspbrryPIでインストールの仕方), 我々は、より多くの情報をここで見つけました https://qiita.com/NakamoriSuganuma/items/831d91923d8c5b729370著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .