mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
12 lines
242 B
Bash
Executable File
12 lines
242 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
#"$(dirname "$0")/pip_install.sh" hyuga hyuga
|
|
|
|
# need to add --system-site-package option
|
|
python3 -m venv --system-site-package ./venv
|
|
./venv/bin/pip3 install -U pip
|
|
./venv/bin/pip3 install hyuga
|
|
ln -s "./venv/bin/hyuga" .
|