2023年12月28日木曜日

GPU無しでllama.cppとelyza/ELYZA-japanese-Llama-2-13b-fast-instructを実行する

ELYZA-japanese-Llama-2-13b-fast-instructは130億パラメータの日本語LLMです。
以下の手順でllama.cppとELYZAをUbuntu22.04にインストールし、質問を実行します。

1.llama.cppのインストール
sudo mkdir -p /mnt/data/elyza13b
※パスは適宜変更してください

sudo chown ubuntu:ubuntu /mnt/data/elyza13b
※ユーザ名とグループは適宜変更してください

cd /mnt/data/elyza13b

wget -4 https://github.com/ggerganov/llama.cpp/archive/refs/tags/b1708.tar.gz

tar xvfz b1708.tar.gz

cd llama.cpp-b1708

make 

2. モデルのダウンロード
cd models

wget -4 https://huggingface.co/mmnga/ELYZA-japanese-Llama-2-13b-fast-instruct-gguf/resolve/main/ELYZA-japanese-Llama-2-13b-fast-instruct-q5_K_M.gguf
※求めるスピードや精度で適宜モデルを変更してください

cd ..

2.テスト実行
以下のコマンドで、質問を実行します。
./main -m ./models/ELYZA-japanese-Llama-2-13b-fast-instruct-q5_K_M.gguf -n 512 --temp 0.1 -p "[INST]<<SYS>>あなたは誠実で優秀な日本人のアシスタントです。<</SYS>>Large Language Modelとは何か説明してください。[/INST]"

※以下は実行結果例です
 [INST]<<SYS>>あなたは誠実で優秀な日本人のアシスタントです。<</SYS>>Large Language Modelとは何か説明してください。[/INST] Large Language Model (LLM) は、大量のテキストデータで学習した言語モデルのことです。

自然言語処理 (NLP) のタスクでは、大量のトレーニングデータを用いてモデルを訓練することが一般的です。この際、モデルが学習するデータの量や質によって精度や性能が大きく左右されます。そのため、高品質なデータで十分な量の学習を行うことが重要です。

近年、大規模なデータベースやWebサイトの増加により、大量のテキストデータが容易に収集できるようになりました。これにより、大規模言語モデルの学習が可能となりました。 [end of text]

2023年12月26日火曜日

GPU無しでStreamDiffusionが実行できるJupyterLabをインストールする(Ubuntu 22.04)

StreamDiffusionで高速にAI画像を生成することができます。
JupyterLab上でStreamDiffusionをインストールするには以下の手順を実行します。

1.pipenvのインストール
sudo apt-get -y install python3-pip python3-distutils python3-dev python3-testresources

python3 -m pip install --user pipenv

echo "export PIPENV_VENV_IN_PROJECT=true" >> ~/.profile

echo 'export PATH=$PATH:$HOME/.local/bin' >> ~/.profile

source ~/.profile

2. Jupyterのインストール
sudo mkdir -p /mnt/data/jupyter
※パスは適宜変更してください

sudo chown ubuntu:ubuntu /mnt/data/jupyter
※ユーザ名・グループ名は適宜変更してください

cd /mnt/data/jupyter

pipenv --python 3


pipenv install jupyterlab

pipenv install matplotlib

pipenv install pandas

3. Dream Diffusionのインストール
sudo apt-get -y install git

git clone https://github.com/cumulo-autumn/StreamDiffusion.git

cat << EOF >> Pipfile
[[source]]
url = "https://download.pytorch.org/whl/cu121"
verify_ssl = false
name = "pytorch"
EOF

pipenv install torch==2.1.0 torchvision==0.16.0 xformers --index=pytorch

pipenv install git+https://github.com/cumulo-autumn/StreamDiffusion.git@main#egg=streamdiffusion[tensorrt]

pipenv install accelerate

4. モデルのダウンロード
cd /mnt/data/jupyter/StreamDiffusion/models/Model

wget -4 https://huggingface.co/KBlueLeaf/kohaku-v2.1/resolve/main/kohaku-v2.1.safetensors
※必要に応じて他のモデルもダウンロードしてください。

5. Jupyter Labをサービスとして登録
cat << EOF | sudo tee /etc/systemd/system/jupyter.service
[Unit]
Description=Jupyter
[Service]
Type=simple
Environment=HF_HOME=/mnt/data/jupyter/StreamDiffusion/models/Model
ExecStart=/mnt/data/jupyter/.venv/bin/jupyter lab --port 8080 --ip=0.0.0.0 --allow-root --NotebookApp.token='jupyter'
User=ubuntu
Group=ubuntu
WorkingDirectory=/mnt/data/jupyter
Restart=always
RestartSec=10
[Install]
WantedBy=multi-user.target
EOF
※ディレクトリ、ユーザ、トークンは適宜変更してください

sudo systemctl enable jupyter

sudo systemctl start jupyter

6. ブラウザでJupyterにアクセスしてNotebookに以下のコードを貼り付けます。
http://{Jupyterをインストールしたホスト}:8080/lab?token=jupyter

Notebookに貼り付けるコードは以下です。デバイスにCPUを指定して、GPUなしのマシンでも画像を生成することができます。

import sys
sys.path.append("/mnt/data/jupyter/StreamDiffusion")

import torch
from utils.wrapper import StreamDiffusionWrapper

# モデル
model_id_or_path = "/mnt/data/jupyter/StreamDiffusion/models/Model/kohaku-v2.1.safetensors"
# 画像サイズ
width = 512
height = 512
# seed
seed = 2
# プロンプト
prompt="1girl and 1dog walking riverside under blue sky"
negative_prompt=""

stream = StreamDiffusionWrapper(
    model_id_or_path=model_id_or_path,
    t_index_list=[0, 16, 32, 45],
    frame_buffer_size=1,
    width=width,
    height=height,
    warmup=10,
    acceleration="none",
    mode="txt2img",
    use_denoising_batch=False,
    cfg_type="none",
    seed=seed,
    device="cpu",
    dtype=torch.float32,
)

stream.prepare(
    prompt=prompt,
    negative_prompt=negative_prompt,
    num_inference_steps=50,
)

for _ in range(stream.batch_size - 1):
    stream()
output_image = stream()
output_image

実行結果

2023年3月10日金曜日

Raspberry Pi OS(Bullseye)/Debian 11/Ubuntu 22.04にAlsaplayer-gtkオーディオプレイヤーをインストールする

Alsaplayer-gtkはコンパクトなオーディオプレイヤーです。

〇Alsaplayer-gtlの画面(Raspberry Pi OS)

〇Alsaplayer-gtlの画面(Debian 11 Bullseye)

〇Alsaplayer-gtlの画面(Ubuntu 22.04)

インストール方法

以下のコマンドを実行します。
sudo apt-get update

sudo apt-get -y install alsaplayer-gtk

関連情報

・Alsa Playerのwebサイト
http://alsaplayer.sourceforge.net/

2023年3月9日木曜日

Debian 11 (Bullseye)にMiniflux2をインストールする

Miniflux2はGo製のfeed readerです。登録したウェブサイトの記事をRSSを通して読むことができます。

〇Minifulx2の画面

インストール方法

1. PostgreSQLのインストール
sudo apt-get update

sudo apt-get -y install postgresql-13

echo "listen_addresses='*'" | sudo tee -a /etc/postgresql/13/main/postgresql.conf

echo "host    all         all         127.0.0.1/32          password" | sudo tee -a /etc/postgresql/13/main/pg_hba.conf

※ネットワーク設定は適宜変更してください
echo "host    all         all         192.168.1.0/24          password" | sudo tee -a /etc/postgresql/13/main/pg_hba.conf

sudo systemctl restart postgresql.service

※パスワードなど適宜変更してください
sudo su - postgres << EOF
psql -c "
alter user postgres with password 'postgres';
create user miniflux2 with password 'miniflux2';
"
psql -c "
create database miniflux2 owner miniflux2 encoding 'UTF8' lc_collate 'ja_JP.UTF-8' lc_ctype 'ja_JP.UTF-8' template 'template0';
"
EOF

2. minifulx2のインストールする
wget https://github.com/miniflux/v2/releases/download/2.0.41/miniflux_2.0.41_amd64.deb

sudo dpkg -i ./miniflux_2.0.41_amd64.deb

echo "DATABSE_URL=postgres://miniflux2:miniflux2@localhost/miniflux2?sslmode=disable" | sudo tee -a /etc/miniflux.conf

echo "LISTEN_ADDR=0.0.0.0:8080" | sudo tee -a /etc/miniflux.conf

miniflux -migrate

sudo apt-get -y install expect

※パスワードなど適宜変更してください
/usr/bin/expect << EOF
spawn miniflux -create-admin
expect "Enter Username:"
send "admin\\r"
expect "Enter Password:"
send "admin123\\r"
expect eof
exit
EOF

sudo systemctl enable miniflux

sudo systemctl start miniflux

3. ブラウザからhttp://<サーバ名またはIPアドレス>:8080/ にアクセスします
ユーザ名はadmin、パスワードはadmin123です。
サンプルのRSS http://serverarekore.blogspot.com/feeds/posts/default

関連情報

・Minifluxに関する情報はこちらを参照してください。

2023年3月8日水曜日

マインドマップツールMinderをUbuntu 22.04にインストールする

Minderはマインドマップツールです。

〇Minderの画面

Ubuntu Softwareによるインストール方法

1. Ubuntu Softwareを起動して、minderを検索します。

2.Minderのインストールボタンをクリックします

コマンドによるインストール方法

以下のコマンドを実行します。
sudo apt-get update

sudo apt-get -y install minder

関連情報

・Minderのgithubリポジトリ
https://github.com/phase1geo/Minder

2023年3月7日火曜日

データ操作ツールMillerをUbuntu 22.04/Debian 11/Raspberry Pi OS(Bullseye)にインストールする

Millerで簡単にデータをフィルタリング、整形したり、操作することが出来ます。

Millerのインストール方法

sudo apt-get update

sudo apt-get -y install miller

Millerの実行方法

サンプルデータの作成
cat << EOF > sample.csv
name,entry_date,point
"Doug, White",2022-10-11,1200
"Anne, Greenwood",2022-09-10,2100
"Bob, Kerl",2022-10-11,3000
EOF

・表型に整形して表示
mlr --icsv --opprint cat sample.csv
name            entry_date point
Doug, White     2022-10-11 1200
Anne, Greenwood 2022-09-10 2100
Bob, Kerl       2022-10-11 3000

・JSON型に変換して表示
mlr --icsv --ojson cat sample.csv
[
{
  "name": "Doug, White",
  "entry_date": "2022-10-11",
  "point": 1200
},
{
  "name": "Anne, Greenwood",
  "entry_date": "2022-09-10",
  "point": 2100
},
{
  "name": "Bob, Kerl",
  "entry_date": "2022-10-11",
  "point": 3000
}
]

・行数をカウント
mlr --icsv count sample.csv
count=3

・降順でソート
mlr --c2p --icsv sort -nr point sample.csv
name            entry_date point
Bob, Kerl       2022-10-11 3000
Anne, Greenwood 2022-09-10 2100
Doug, White     2022-10-11 1200

・指定列のみ出力
mlr --icsv --opprint cut -f name,point sample.csv
name            point
Doug, White     1200
Anne, Greenwood 2100
Bob, Kerl       3000

・条件を指定してフィルタリング
mlr --icsv --opprint filter '$point >= 2000' sample.csv
name            entry_date point
Anne, Greenwood 2022-09-10 2100
Bob, Kerl       2022-10-11 3000

関連情報

・Millerのgithubリポジトリ
https://github.com/johnkerl/miller

2023年3月6日月曜日

Raspberry Pi OS(Bullseye)にRangerをインストールする

Rangerコマンドでターミナルをディレクトリ階層をキーボードで移動してファイルの中身を確認したり、実行する事ができます。

〇Rangerの画面(Raspberry Pi OS)

※実行はrangerと入力します。Qか:qでコマンドを終了します。矢印キーで移動、リターンで確定になります。

インストール方法

以下のコマンドを実行します。
sudo apt-get update

sudo apt-get -y install ranger

関連情報

・Rangerのgithubリポジトリ
https://github.com/ranger/ranger

2023年3月5日日曜日

AlmaLinux 9/Rocky Linux 9にQmmpをインストールする

QmmpはWinamp風のコンパクトなUIのミュージックプレイヤーです。

〇Qmmpの画面(AlmaLinux 9)

〇Qmmpの画面(Rocky Linux 9)

インストール方法

以下のコマンドを実行します。
sudo dnf -y install flatpak

sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo

sudo flatpak -y install flathub com.ylsoftware.qmmp.Qmmp

関連情報

・Qmmpのウェブサイト
https://qmmp.ylsoftware.com/

2023年3月4日土曜日

Debian 11(Bullseye)にProcessingをインストールする

Processingでビジュアルな表現のプログラミングを学ぶことができます。

〇Processingの画面(Debian 11 Bullseye)

インストール方法

以下のコマンドを実行します
wget --inet4-only https://github.com/processing/processing4/releases/download/processing-1289-4.1.1/processing-4.1.1-linux-x64.tgz

tar xvfz processing-4.1.1-linux-x64.tgz

cd processing-4.1.1

./install.sh

関連情報

・Processingに関する他の記事は、こちらを参照してください。

・Processingのウェブサイト
https://processing.org

2023年3月3日金曜日

AlmaLinux 9/Rocky Linux 9にProjectLibreをインストールする

ProjectLibreを使用してMicrosoft Projectのようにプロジェクト管理を行う事ができます。

〇ProjectLibreの画面(AlmaLinux 9)

〇ProjectLibreの画面(Rocky Linux 9)

インストール方法

以下のコマンドを実行します。
sudo dnf install -y java-11-openjdk

sudo mkdir -p /opt/projectlibre

cd /opt/projectlibre

sudo wget --inet4-only https://sourceforge.net/projects/projectlibre/files/ProjectLibre/1.9.3/projectlibre-1.9.3.jar

cat << EOF | sudo tee /usr/share/applications/projectlibre.desktop
[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Environment=QT_IM_MODULE=fcitx
Exec=/bin/java -jar /opt/projectlibre/projectlibre-1.9.3.jar
Name=ProjectLibre
Categories=Development;
EOF

関連情報

・ProjectLibreに関する他の記事は、こちらを参照してください。

2023年3月2日木曜日

Raspberry Pi OS (Bullseye 64bit)にVivaldiをインストールする

Vivaldiは高速・セキュア・フレキシブルなブラウザです。トラッキングや広告をブロッキングすることができます。

〇Vivaldiの画面

インストール方法

以下のコマンドを実行します。
wget https://downloads.vivaldi.com/stable/vivaldi-stable_5.6.2867.36-1_arm64.deb

sudo apt-get -y install ./vivaldi-stable_5.6.2867.36-1_arm64.deb

関連情報

・Vivaldiブラウザのウェブサイト
https://vivaldi.com/ja/

2023年3月1日水曜日

Raspberry Pi OS(Bullseye)/Debian 11に壁紙チェンジャーアプリVarietyをインストールする

Varietyは指定した間隔で壁紙を変えてくれる壁紙チェンジャーアプリです。

〇Varietyの画面(Raspberry Pi)

〇Varietyの画面(Debian 11 Bullseye)

インストール方法

以下のコマンドを実行します
sudo apt-get update

sudo apt-get -y install variety

関連情報

・Varietyのwebサイト
https://peterlevi.com/variety/

2023年2月28日火曜日

Ubuntu 22.04に暗号化ボリューム作成アプリVeraCryptをインストールする

VeraCryptで暗号化されたボリュームを作成して、大切な情報を保管する事ができます。

〇VeraCryptの画面

VeraCryptのインストール方法

以下のコマンドを実行します
wget https://launchpad.net/veracrypt/trunk/1.25.9/+download/veracrypt-1.25.9-Ubuntu-22.04-amd64.deb

sudo apt-get -y install ./veracrypt-1.25.9-Ubuntu-22.04-amd64.deb

VeraCryptの暗号化ボリュームの作成方法

VeraCryptをインストールした後、以下の手順で暗号化ボリュームを作成します。
1. VeraCryptのウインドウの「ボリュームの作成」ボタンをクリックします。「暗号化されたファイルコンテナを作成」を選択して「次へ」をクリックします。

2. 「VeraCrypt標準ボリューム」を選択します

3. ボリュームとして使用するファイルの場所を入力します。

4. 暗号化アルゴリズムを選択します。

5. ボリュームのサイズを入力します

6. ボリュームのパスワードを入力します

7. ファイルシステムを指定します

8. ダイアログ内でマウスカーソルを動かして、フォーマットボタンをクリックします。

9. 「終了」ボタンをクリックします。

10. 作成したボリュームを選択して「マウント」ボタンで作成したボリュームをマウントします。

関連情報

・VeraCryptのウェブサイト
https://www.veracrypt.fr/en/Home.html

2023年2月27日月曜日

Ubuntu 22.04にFeatherNotesをインストールする

FeatherNotesは軽量な階層ノート管理アプリです。

〇FeatherNotesの画面

Ubuntu Softwareによるインストール方法

1. Ubuntu Softwareを起動して、feathernotesを検索します。

2.FeatherNotesのインストールボタンをクリックします

コマンドによるインストール方法

以下のコマンドを実行します。
sudo apt-get update

sudo apt-get -y install feathernotes

関連情報

・FeatherNotesのgithubリポジトリ
https://github.com/tsujan/FeatherNotes

2023年2月26日日曜日

Debian 11(Bullseye)にEtherpad-liteをインストールする

Etherpad-liteでブラウザ上で同時に複数ユーザが文書を編集する事ができます。文書の編集の他、シンプルなチャット機能も付いているので相談しながら共同作業が可能です。

〇Etherpad-liteの画面(Debian 11 Bullseye)

Etherpad-liteのインストール

以下のコマンドを実行します。
sudo apt-get update

sudo apt-get -y install curl git

curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -

sudo apt-get -y install nodejs

cd /opt

sudo git clone --branch master https://github.com/ether/etherpad-lite.git

cat << EOF | sudo tee /etc/systemd/system/etherpad-lite.service
[Unit]
Description=etherpad-lite
[Service]
Type=simple
ExecStart=/opt/etherpad-lite/bin/run.sh --root
WorkingDirectory=/opt/etherpad-lite
Restart=always
RestartSec=10
[Install]
WantedBy=multi-user.target
EOF

sudo systemctl enable etherpad-lite.service

sudo systemctl start etherpad-lite.service

インストールが完了したらブラウザからhttp://<ホスト名またはアドレス>:9001/ にアクセスします。
※初回起動時は初期化に時間がかかるので少々待ってください

関連情報

・Etherpad-liteのgithubリポジトリ
https://github.com/ether/etherpad-lite

2023年2月25日土曜日

Raspberry Pi OS(Bullseye)/Debian 11/Ubuntu 22.04に音声合成プログラムespeak-ngをインストールする

espeak-ngで複数の言語の音声合成を行うことができます。

インストール方法

sudo apt-get update

sudo apt-get -y install espeak-ng

コマンド例

・女性の声で音声出力
espeak-ng -v Annie "Hello, World!"
espeak-ng -v f5 "Hello, World!"

・男性の声で音声出力
espeak-ng -v Mario "Hello, World!"
espeak-ng -v m3 "Hello, World!"

・音声スピード
低速
espeak-ng -v Annie -s100 "How about going for a walk?"
高速
espeak-ng -v Annie -s200 "How about going for a walk?"

・単語間の時間
単語間を長く
espeak-ng -v Mario -g30 "How about going for a walk?"
単語間を短く
espeak-ng -v Mario -g5 "How about going for a walk?"

・音声ピッチ
ピッチを低く
espeak-ng -v Mario -p20 "How about going for a walk?"
ピッチを高く
espeak-ng -v Mario -p80 "How about going for a walk?"

・言語の一覧表示
espeak-ng --voices

・日本語の音声出力
espeak-ng -v Japanese -s190 "こんにちわ、さようなら"

・ファイル出力
出力ファイル名を指定する場合は-wオプションを使用します。
espeak-ng -v Annie -w hello_world.wav "Hello, World!"

関連情報

・espeak-ngのGithubページ
https://github.com/espeak-ng/espeak-ng

2023年2月24日金曜日

概念辞書WordNetをUbuntu 22.04にインストールする

WordNetで類義語や上位語や下位語・概念を調べることが出来ます。

〇WordNetの画面

Ubuntu Softwareによるインストール方法

1. Ubuntu Softwareを起動して、wordnetを検索します。

2.WordNetのインストールボタンをクリックします

コマンドによるインストール方法

以下のコマンドを実行してWordNetをインストールします。
sudo apt-get update

sudo apt-get -y install wordnet

関連情報

・WordNetのウェブサイト
https://wordnet.princeton.edu/

2023年2月23日木曜日

AlmaLinux 9/Rocky Linux 9にWiRedPandaをインストールする

WiRedPandaでグラフィカルに論理回路の動作を学ぶことが出来ます。

〇WiRedPandaの画面(AlmaLinux 9)

〇WiRedPandaの画面(Rocky Linux 9)

インストール方法

以下のコマンドを実行します。
sudo mkdir -p /opt/wiredpanda

cd /opt/wiredpanda

sudo wget https://github.com/GIBIS-UNIFESP/wiRedPanda/releases/download/v4.1.10/WiRedPanda-Ubuntu-Qt5.AppImage

sudo chmod +x WiRedPanda-Ubuntu-Qt5.AppImage

cat << EOF | sudo tee /usr/share/applications/wiredpanda.desktop
[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Exec=/opt/wiredpanda/WiRedPanda-Ubuntu-Qt5.AppImage
Name=Wired Panda
Categories=Development;
EOF

関連情報

・WiRedPandaのgithubリポジトリ
https://github.com/GIBIS-UNIFESP/wiRedPanda

2023年2月22日水曜日

AlmaLinux 9/Rocky Linux 9にロボットシミュレーターのWebotsをインストールする

Webotsはオープンソースのロボットシミュレーターです。

〇Webotsの画面(AlmaLinux 9)

〇Webotsの画面(Rocky Linux 9)

インストール方法

以下のコマンドを実行します。
1. snapのインストール(※既に導入済みの場合はスキップしてください)
sudo dnf -y install epel-release

sudo dnf -y install snapd

sudo systemctl enable --now snapd.socket

sudo ln -s /var/lib/snapd/snap /snap

2. Webotsのインストール
sudo snap install webots
※もし「error: too early for operation, device not yet seeded or device model not acknowledged」というメッセージが表示された場合は、しばらく待ってから再実行してください。

コマンドでの実行方法

以下のコマンドで実行します。
snap run webots

関連情報

・Webotsのgithubリポジトリ
https://github.com/cyberbotics/webots

2023年2月21日火曜日

ノートアプリXournal++をUbuntu 22.04にインストールする

Xournal++で手書き図形とテキストを混在させて自由にノートをとることが出来ます。

〇Xournal++の画面

Ubuntu Softwareによるインストール方法

1. Ubuntu Softwareを起動して、xournalppを検索します。

2.Xournal++(Take handwritten notesの説明がある方)のインストールボタンをクリックします

コマンドによるインストール方法

以下のコマンドを実行します。
sudo apt-get update

sudo apt-get -y install xournalpp

関連情報

・Xournal++のウェブサイト
https://xournalpp.github.io/

2023年2月20日月曜日

Raspberry Pi OS(Bullseye)/Debian 11にXML Copy Editorをインストールする

XML Copy EditorでXMLを編集・検証することが出来ます。

〇XML Copy Editorの画面(Raspberry Pi)

〇XML Copy Editorの画面(Debian 11 Bullseye)

インストール方法

以下のコマンドを実行します
sudo apt-get update

sudo apt-get -y install xmlcopyeditor

関連情報

・XML Copy Editorのウェブサイト
https://xml-copy-editor.sourceforge.io/

2023年2月19日日曜日

Raspberry Pi OS(Bullseye)/Debian 11にFritzingをインストールする

Fritzingで回路図やブレッドボード上の電子部品の接続図などを描画する事ができます。

〇Fritzingの画面(Raspberry Pi)

〇Fritzingの画面(Debian 11 Bullseye)

インストール方法

以下のコマンドを実行します
sudo apt-get update

sudo apt-get -y install fritzing

関連情報

・Fritzingに関する他の情報はこちらを参照してください。

2023年2月18日土曜日

楽器アプリQwertoneをUbuntu 22.04にインストールする

Qwertoneは、ピアノのようにキーボードを押すと音がでる楽器アプリです。

〇Qwertoneの画面

Ubuntu Softwareによるインストール方法

1. Ubuntu Softwareを起動して、qwertoneを検索します。

2.Qwertoneのインストールボタンをクリックします

コマンドによるインストール方法

以下のコマンドを実行します。
sudo apt-get update

sudo apt-get -y install qwertone

関連情報

・QwertoneのGitlabリポジトリ
https://gitlab.com/azymohliad/qwertone

2023年2月17日金曜日

Ubuntu 22.04にGPSデータの編集が可能なViking GPS data editor and analayzerをインストールする

Viking GPS data editor and analayzerでGPSデータの編集・エクスポート・インポートなどを行うことができます。

〇Viking GPSの画面

Ubuntu Softwareによるインストール方法

1. Ubuntu Softwareを起動して、vikingを検索します。

2.Vikingのインストールボタンをクリックします

コマンドによるインストール方法

以下のコマンドを実行します。
sudo apt-get update

sudo apt-get -y install viking

関連情報

・Viking GPSのウェブサイト
https://sourceforge.net/projects/viking/