インストール - Fish

提供:MochiuWiki : SUSE, EC, PCB
2021年10月24日 (日) 18:04時点におけるWiki (トーク | 投稿記録)による版 (ページの作成:「== 概要 == <br><br> == Fishのインストール == ==== パッケージ管理システムからインストール ==== パッケージ管理システムからFishを…」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
ナビゲーションに移動 検索に移動

概要



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コマンドを実行して、Oh My Fishをダウンロードする。

curl -L https://get.oh-my.fish > install


Oh My FishのGithubからOh My Fishをダウンロードする。

または、以下のコマンド実行する。

git clone https://github.com/oh-my-fish/oh-my-fish.git


Oh My Fishをインストールする。

# Curlコマンドからインストールする場合
fish install --path=~/.local/share/omf --config=~/.config/omf

# 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