From c2609d26e6504f46f86853a0fb7f1c79131239b4 Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Wed, 18 Dec 2019 18:02:00 +0900 Subject: Add installer of pyls for Windows --- installer/install-pyls.cmd | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 installer/install-pyls.cmd diff --git a/installer/install-pyls.cmd b/installer/install-pyls.cmd new file mode 100644 index 0000000..154f2d0 --- /dev/null +++ b/installer/install-pyls.cmd @@ -0,0 +1,16 @@ +@echo off + +cd %~dp0 +if exist "..\servers\pyls" rd /S /Q "..\servers\pyls" +md "..\servers\pyls" +cd "..\servers\pyls" + +python3 -m venv ./venv +venv\bin\pip3 install python-language-server + +echo @echo off ^ + +venv\bin\pyls ^ + +> pyls.cmd + -- cgit v1.2.3-54-g00ecf