mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-21 04:31:32 +03:00
16 lines
448 B
Markdown
16 lines
448 B
Markdown
## How to use
|
|
|
|
* `cd` into `${PROJECT_ROOT}/bin`, this directory.
|
|
* Install pyenv and pyenv-virtuelenv.
|
|
* Install Python 3.9.7 using pyenv.
|
|
* Create a virtualenv with the name `com.qvacua.VimR.bin`.
|
|
* Ensure that you're running the Python in the virtualenv by
|
|
```bash
|
|
pyenv which python
|
|
/${HOME}/.pyenv/versions/com.qvacua.VimR.bin/bin/python
|
|
```
|
|
* Install the requirements
|
|
```bash
|
|
pip install -r requirements.txt
|
|
```
|
|
|