grnenv-rs is a tool to switch using multiple Groonga versions.
Currently, only confirmed to work on Windows 10, macOS Sierra(10.12), and Ubuntu Trusty (14.04 LTS).
x86_64 msvc target binaries are found at: https://github.com/cosmo0920/grnenv-rs/releases
And then, put binaries into $Env:USERPROFILE\bin
.
Prepare the following dependent libraries and tool chains:
And then,
bash
$ cargo install grnenv-rs
This tool has plugin system, which is using subcommand mechanism.
You should put grnenv-*
executables into $PATH
or ~/bin
.
In Windows, grnenv-*
subcommand should be portable executables.
If you want to support Windows in subcommand, it recommends to use Rust language and build (i686|x86_64)-pc-windows-msvc target.
powershell
PS> grnenv init
And then, Please create profile.ps1 the following place:
powershell
$Env:USERPROFILE\Documents\WindowsPowerShell\profile.ps1
And write the following thing:
powershell
. $Env:USERPROFILE\.groonga\shims\bin\source-groonga.ps1
then,
powershell
PS> grnenv install VERSION [--arch (x86|x64)]
PS> grnenv switch VERSION [--arch (x86|x64)]
Finally, restart powershell and use specified version of Groonga.
If you get an error, you should specify execution policy as follows:
powershell
PS> Set-ExecutionPolicy RemoteSigned
bash
$ grnenv init
And write the following content into .bash_profile or .zsh_profile etc.:
bash
. $HOME/.groonga/shims/bin/source-groonga.sh
then,
bash
$ grnenv install VERSION
$ grnenv switch VERSION
Finally, restart your shell and use specified version of Groonga.
MIT.