From 8163057f1c4d153ffa70d5458dd4d10f1de8f791 Mon Sep 17 00:00:00 2001 From: eidheim Date: Tue, 18 Jun 2019 15:34:39 +0200 Subject: [PATCH] Updated language server instructions for python3 support --- docs/language_servers.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/docs/language_servers.md b/docs/language_servers.md index ba9d0e5..475ee08 100644 --- a/docs/language_servers.md +++ b/docs/language_servers.md @@ -21,15 +21,12 @@ chmod 755 /usr/local/bin/javascript-language-server ## Python3 * Prerequisites: - * In juCi++ preferences, set `project.python_command` to `PYTHONUNBUFFERED=1 python3` * Python3 - * MacOS: Jedi does not yet support Python 3.7, but you can install latest 3.6 version: - - `brew install https://raw.githubusercontent.com/Homebrew/homebrew-core/f2a764ef944b1080be64bd88dca9a1d80130c558/Formula/python.rb` + * In juCi++ preferences, set `project.python_command` to `PYTHONUNBUFFERED=1 python3` Install language server, and create symbolic link to enable server in juCi++: ```sh -pip3 install python-language-server[rope,pycodestyle,yapf] pyls-mypy +pip3 install python-language-server[rope,pycodestyle,yapf] ln -s `which pyls` /usr/local/bin/python-language-server ```