mirror of
https://github.com/sharkdp/bat.git
synced 2024-11-21 23:33:26 +01:00
translate Installation
This commit is contained in:
parent
159f234b78
commit
4791f15222
@ -81,21 +81,20 @@ bat -n main.rs # show line numbers (only)
|
|||||||
bat f - g # output 'f', then stdin, then 'g'.
|
bat f - g # output 'f', then stdin, then 'g'.
|
||||||
```
|
```
|
||||||
|
|
||||||
## Installation
|
## インストール
|
||||||
|
|
||||||
### On Ubuntu
|
### On Ubuntu
|
||||||
*... and other Debian-based Linux distributions.*
|
*... や他のDebianベースのLinuxディストリビューション*
|
||||||
|
|
||||||
|
最新の `.deb` パッケージを[こちら](https://github.com/sharkdp/bat/releases)からダウンロードして、インストールしてください:
|
||||||
|
|
||||||
Download the latest `.deb` package from the [release page](https://github.com/sharkdp/bat/releases)
|
|
||||||
and install it via:
|
|
||||||
``` bash
|
``` bash
|
||||||
sudo dpkg -i bat_0.9.0_amd64.deb # adapt version number and architecture
|
sudo dpkg -i bat_0.9.0_amd64.deb # adapt version number and architecture
|
||||||
```
|
```
|
||||||
|
|
||||||
### On Arch Linux
|
### On Arch Linux
|
||||||
|
|
||||||
You can install [the `bat` package](https://www.archlinux.org/packages/community/x86_64/bat/)
|
[Arch Linuxの公式リソース](https://www.archlinux.org/packages/community/x86_64/bat/)からインストールできます。
|
||||||
from the official sources:
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pacman -S bat
|
pacman -S bat
|
||||||
@ -103,20 +102,21 @@ pacman -S bat
|
|||||||
|
|
||||||
### On Void Linux
|
### On Void Linux
|
||||||
|
|
||||||
You can install `bat` via xbps-install:
|
xbps-ininstall経由で `bat` をインストールできます。
|
||||||
|
|
||||||
```
|
```
|
||||||
xbps-install -S bat
|
xbps-install -S bat
|
||||||
```
|
```
|
||||||
|
|
||||||
### On FreeBSD
|
### On FreeBSD
|
||||||
|
|
||||||
You can install a precompiled [`bat` package](https://www.freshports.org/textproc/bat) with pkg:
|
事前にコンパイル済みである[pkg](https://www.freshports.org/textproc/bat)をインストールできます:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pkg install bat
|
pkg install bat
|
||||||
```
|
```
|
||||||
|
|
||||||
or build it on your own from the FreeBSD ports:
|
または、FreeBSDのportsから自身でビルドすることも可能です:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cd /usr/ports/textproc/bat
|
cd /usr/ports/textproc/bat
|
||||||
@ -125,7 +125,7 @@ make install
|
|||||||
|
|
||||||
### Via nix
|
### Via nix
|
||||||
|
|
||||||
You can install `bat` using the [nix package manager](https://nixos.org/nix):
|
`bat` を[nix package manager](https://nixos.org/nix)経由でインストールすることができます:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
nix-env -i bat
|
nix-env -i bat
|
||||||
@ -135,13 +135,16 @@ nix-env -i bat
|
|||||||
|
|
||||||
You can install `bat` with zypper:
|
You can install `bat` with zypper:
|
||||||
|
|
||||||
|
`bat` をzypperでインストールすることができます:
|
||||||
|
|
||||||
```
|
```
|
||||||
zypper install bat
|
zypper install bat
|
||||||
```
|
```
|
||||||
|
|
||||||
### On macOS
|
### On macOS
|
||||||
|
|
||||||
You can install `bat` with [Homebrew](http://braumeister.org/formula/bat):
|
[Homebrew](http://braumeister.org/formula/bat)でインストールすることができます:
|
||||||
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
brew install bat
|
brew install bat
|
||||||
@ -149,8 +152,10 @@ brew install bat
|
|||||||
|
|
||||||
### On Windows
|
### On Windows
|
||||||
|
|
||||||
You can download prebuilt binaries from the [Release page](https://github.com/sharkdp/bat/releases),
|
You can download prebuilt binaries from the [Release page],
|
||||||
or install it with [scoop](https://scoop.sh/):
|
or install it with :
|
||||||
|
|
||||||
|
事前にビルド済みのバイナリを[リリースページ](https://github.com/sharkdp/bat/releases)からダウンロードすることができます。または、[scoop](https://scoop.sh/)でインストールすることも可能です。
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
scoop install bat
|
scoop install bat
|
||||||
@ -160,7 +165,9 @@ scoop install bat
|
|||||||
|
|
||||||
### Via Docker
|
### Via Docker
|
||||||
|
|
||||||
There is a [Docker image](https://hub.docker.com/r/danlynn/bat/) that you can use to run `bat` in a container:
|
|
||||||
|
コンテナ内で`bat` を使いたい方のために[Docker image](https://hub.docker.com/r/danlynn/bat/)が用意されています。
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker pull danlynn/bat
|
docker pull danlynn/bat
|
||||||
alias bat='docker run -it --rm -e BAT_THEME -e BAT_STYLE -e BAT_TABS -v "$(pwd):/myapp" danlynn/bat'
|
alias bat='docker run -it --rm -e BAT_THEME -e BAT_STYLE -e BAT_TABS -v "$(pwd):/myapp" danlynn/bat'
|
||||||
@ -168,7 +175,7 @@ alias bat='docker run -it --rm -e BAT_THEME -e BAT_STYLE -e BAT_TABS -v "$(pwd):
|
|||||||
|
|
||||||
### Via Ansible
|
### Via Ansible
|
||||||
|
|
||||||
You can install `bat` with [Ansible](https://www.ansible.com/):
|
[Ansible](https://www.ansible.com/)でインストールすることができます:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Install role on local machine
|
# Install role on local machine
|
||||||
@ -186,7 +193,7 @@ ansible-galaxy install aeimer.install_bat
|
|||||||
- [Ansible Galaxy](https://galaxy.ansible.com/aeimer/install_bat)
|
- [Ansible Galaxy](https://galaxy.ansible.com/aeimer/install_bat)
|
||||||
- [GitHub](https://github.com/aeimer/ansible-install-bat)
|
- [GitHub](https://github.com/aeimer/ansible-install-bat)
|
||||||
|
|
||||||
This should work with the following distributions:
|
これは以下のディストリビューションで動作するはずです:
|
||||||
- Debian/Ubuntu
|
- Debian/Ubuntu
|
||||||
- ARM (eg. Raspberry PI)
|
- ARM (eg. Raspberry PI)
|
||||||
- Arch Linux
|
- Arch Linux
|
||||||
@ -196,21 +203,20 @@ This should work with the following distributions:
|
|||||||
|
|
||||||
### From binaries
|
### From binaries
|
||||||
|
|
||||||
Check out the [Release page](https://github.com/sharkdp/bat/releases) for
|
|
||||||
prebuilt versions of `bat` for many different architectures. Statically-linked
|
多くの異なるアーキテクチャのためのプレビルドバージョンを[リリースページ](https://github.com/sharkdp/bat/releases)からチェックしてみてください。静的にリンクされている多くのバイナリも利用できます: ファイル名に `musl` を含むアーカイブを探します。
|
||||||
binaries are also available: look for archives with `musl` in the file name.
|
|
||||||
|
|
||||||
### From source
|
### From source
|
||||||
|
|
||||||
If you want to build `bat` from source, you need Rust 1.29 or
|
|
||||||
higher. You can then use `cargo` to build everything:
|
`bat` をソースからビルドしたいならば、Rust 1.29 以上の環境が必要です。そして、 `cargo` をビルドに対して使用します:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cargo install bat
|
cargo install bat
|
||||||
```
|
```
|
||||||
|
|
||||||
You may have to install `cmake` and the `libz` development package
|
|
||||||
(`libz-dev` or `libz-devel`) in order for the build to succeed.
|
`cmake` と `libz` 開発パッケージ(`libz-dev` または `libz-devel`)が正しくビルドをするためにインストールする必要があるかもしれません。
|
||||||
|
|
||||||
## Customization
|
## Customization
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user