# lsp-python **Repository Path**: BugaoSimon/lsp-python ## Basic Information - **Project Name**: lsp-python - **Description**: Python support for lsp-mode using python-language-server. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: https://github.com/emacs-lsp/lsp-python/ - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-09-20 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![MELPA](https://melpa.org/packages/lsp-python-badge.svg)](https://melpa.org/#/lsp-python) Python support for lsp-mode using [python-language-server](https://github.com/palantir/python-language-server). ## Installation Install [`lsp-mode`](https://github.com/emacs-lsp/lsp-mode) first, and either clone this repository, or install from MELPA. Add the following to your `.emacs`: ```emacs-lisp (require 'lsp-mode) (require 'lsp-python) (add-hook 'python-mode-hook #'lsp-python-enable) ```