「インストール - Fish」の版間の差分
ナビゲーションに移動
検索に移動
(ページの作成:「== 概要 == <br><br> == Fishのインストール == ==== パッケージ管理システムからインストール ==== パッケージ管理システムからFishを…」) |
|||
42行目: | 42行目: | ||
== Oh My Fishのインストール == | == Oh My Fishのインストール == | ||
==== Curlコマンドからインストール ==== | |||
Curlコマンドを実行して、Oh My Fishをダウンロードする。<br> | Curlコマンドを実行して、Oh My Fishをダウンロードする。<br> | ||
curl -L https://get.oh-my.fish > install | curl -L https://get.oh-my.fish > install | ||
<br> | <br> | ||
Oh My Fishをインストールする。<br> | |||
fish install --path=~/.local/share/omf --config=~/.config/omf | |||
<br> | |||
==== Githubからダウンロードしてインストール ==== | |||
[https://github.com/oh-my-fish/oh-my-fish Oh My FishのGithub]からOh My Fishをダウンロードする。<br> | [https://github.com/oh-my-fish/oh-my-fish Oh My FishのGithub]からOh My Fishをダウンロードする。<br> | ||
または、以下のコマンド実行する。<br> | または、以下のコマンド実行する。<br> | ||
git clone https://github.com/oh-my-fish/oh-my-fish.git | git clone https://github.com/oh-my-fish/oh-my-fish.git | ||
<br> | <br> | ||
Oh My Fishをインストールする。<br> | Oh My Fishをインストールする。<br> | ||
# Gitからインストールする場合 | # Gitからインストールする場合 | ||
git clone https://github.com/oh-my-fish/oh-my-fish | git clone https://github.com/oh-my-fish/oh-my-fish | ||
59行目: | 60行目: | ||
bin/install --offline | bin/install --offline | ||
# | # Tarballからインストールする場合 | ||
curl -L https://get.oh-my.fish > install | curl -L https://get.oh-my.fish > install | ||
fish install --offline=omf.tar.gz | fish install --offline=omf.tar.gz |
2021年10月25日 (月) 02:30時点における版
概要
Fishのインストール
パッケージ管理システムからインストール
パッケージ管理システムからFishをインストールする。
# CentOS sudo yum install fish # SUSE sudo zypper install fish
ソースコードからインストール
ビルドに必要な依存関係のライブラリをインストールする。
# CentOS sudo yum install cmake ncurses-devel # SUSE sudo zypper install install cmake ncurses-devel ncurses5-devel pcre2-devel gettext-runtime gettext-tools
FishのGithubからソースコードをダウンロードする。
tar xf fish-*
Fishをビルドおよびインストールする。
cd fish-* mkdir build && cd build cmake -DCMAKE_INSTALL_PREFIX=$HOME/InstallSoftware/Fish -DWITH_GETTEXT=ON .. make -j $(nproc) make install
.profileファイルや.bashrcファイル等に、Fishのパスを設定する。
vi ~/.profile
# ~/.profileファイル export PATH="/<Fishのインストールディレクトリ>/bin:$PATH"
Oh My Fishのインストール
Curlコマンドからインストール
Curlコマンドを実行して、Oh My Fishをダウンロードする。
curl -L https://get.oh-my.fish > install
Oh My Fishをインストールする。
fish install --path=~/.local/share/omf --config=~/.config/omf
Githubからダウンロードしてインストール
Oh My FishのGithubからOh My Fishをダウンロードする。
または、以下のコマンド実行する。
git clone https://github.com/oh-my-fish/oh-my-fish.git
Oh My Fishをインストールする。
# Gitからインストールする場合 git clone https://github.com/oh-my-fish/oh-my-fish cd oh-my-fish bin/install --offline # Tarballからインストールする場合 curl -L https://get.oh-my.fish > install fish install --offline=omf.tar.gz