mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
12 lines
181 B
Bash
Executable File
12 lines
181 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Usage
|
|
# $ pip_install [EXECUTABLE_NAME] [PYPI_NAME]
|
|
|
|
set -e
|
|
|
|
python3 -m venv ./venv
|
|
./venv/bin/pip3 install -U pip
|
|
./venv/bin/pip3 install "$2"
|
|
ln -s "./venv/bin/$1" .
|