在Linux中安裝qrencode的步驟如下:
sudo apt-get update
sudo apt-get install build-essential libtool autoconf automake pkg-config libpng-dev
在Fedora/RHEL/CentOS系統上,可以使用以下命令安裝:
sudo yum groupinstall "Development Tools"
sudo yum install libtool autoconf automake pkgconfig libpng-devel
接下來,從官方網站下載qrencode的源代碼:https://fukuchi.org/works/qrencode/index.html.en
解壓下載的源代碼文件:
tar xvf qrencode-<version>.tar.gz
將<version>
替換為實際下載的版本號。
cd qrencode-<version>
./configure --prefix=/usr/local
你可以根據需要修改--prefix
選項,以指定安裝路徑。
make
sudo make install
現在,qrencode應該已經成功安裝在你的Linux系統上。你可以通過運行qrencode --help
來查看其使用方法。