@@ -223,6 +223,35 @@ Datapusher+ from version 1.0.0 onwards will be installed as a extension of CKAN,
223223
224224 # # Option 1: Debian Package Installation (Easiest)
225225
226+ [Download the appropriate precompiled binaries](https://github.com/dathere/qsv/releases/latest) for your platform and copy
227+ it to the appropriate directory, e.g. for Linux:
228+
229+ ` ` ` bash
230+ wget https://github.com/dathere/qsv/releases/download/4.0.0/qsv-4.0.0-x86_64-unknown-linux-gnu.zip
231+ unzip qsv-4.0.0-x86_64-unknown-linux-gnu.zip
232+ rm qsv-4.0.0-x86_64-unknown-linux-gnu.zip
233+ sudo mv qsv* /usr/local/bin
234+ ` ` `
235+
236+ Alternatively, if you want to install qsv from source, follow
237+ the instructions [here](https://github.com/dathere/qsv#installation). Note that when compiling from source,
238+ you may want to look into the [Performance Tuning](https://github.com/dathere/qsv#performance-tuning)
239+ section to squeeze even more performance from qsv.
240+
241+ Also, if you get glibc errors when starting qsv, your Linux distro may not have the required version of the GNU C Library
242+ (This will be the case when running Ubuntu 18.04 or older).
243+ If so, use the ` unknown-linux-musl.zip` archive as it is statically linked with the MUSL C Library.
244+
245+ If you already have qsv, update it to the latest release by using the --update option.
246+
247+ ` qsvdp --update`
248+
249+ > ℹ️ ** NOTE:** qsv is a general purpose CSV data-wrangling toolkit that gets regular updates. To update to the latest version, just run
250+ qsv with the ` --update` option and it will check for the latest version and update as required.
251+
252+ # ## Linux Installation
253+
254+ If you are running Debian based distribution, you can install qsv using the following command:
226255 If you are running Debian based Linux distribution on x86_64, you can quickly install qsv using the following commands:
227256
228257 Add the qsv repository to your sources list:
0 commit comments