1
1
Pynvim: Python client to [ Neovim] ( https://github.com/neovim/neovim )
2
2
===================================================================
3
3
4
- [ ![ Build Status] ( https://travis-ci.org/neovim/pynvim.svg?branch=master )] ( https://travis-ci.org/neovim/pynvim )
5
4
[ ![ Documentation Status] ( https://readthedocs.org/projects/pynvim/badge/?version=latest )] ( https://pynvim.readthedocs.io/en/latest/?badge=latest )
6
5
[ ![ Code coverage] ( https://codecov.io/gh/neovim/pynvim/branch/master/graph/badge.svg )] ( https://codecov.io/gh/neovim/pynvim )
7
6
@@ -11,29 +10,19 @@ connecting to and scripting Nvim processes through its msgpack-rpc API.
11
10
Install
12
11
-------
13
12
14
- Supports python 2.7, and 3.4 or later.
13
+ Supports python 3.10 or later.
15
14
16
- ``` sh
17
- pip2 install pynvim
18
- pip3 install pynvim
19
- ```
20
-
21
- If you only use one of python2 or python3, it is enough to install that
22
- version. You can install the package without being root by adding the ` --user `
23
- flag.
15
+ pip3 install pynvim
24
16
17
+ You can install the package without being root by adding the ` --user ` flag.
25
18
Anytime you upgrade Neovim, make sure to upgrade pynvim as well:
26
- ``` sh
27
- pip2 install --upgrade pynvim
28
- pip3 install --upgrade pynvim
29
- ```
30
19
31
- Alternatively, the master version could be installed by executing the following
32
- in the root of this repository:
33
- ``` sh
34
- pip2 install .
35
- pip3 install .
36
- ```
20
+ pip3 install --upgrade pynvim
21
+
22
+ Alternatively, you can install the development version by cloning this
23
+ repository and executing the following at the top level:
24
+
25
+ pip3 install .
37
26
38
27
Python Plugin API
39
28
-----------------
@@ -61,8 +50,8 @@ Development
61
50
62
51
Use (and activate) a local virtualenv.
63
52
64
- python3 -m venv env36
65
- source env36 /bin/activate
53
+ python3 -m virtualenv venv
54
+ source venv /bin/activate
66
55
67
56
If you change the code, you must reinstall for the changes to take effect:
68
57
0 commit comments