Created
February 12, 2021 23:32
-
-
Save Munsterberg/5ae2e5a0ead6785cd7b310f4cf1e2ba6 to your computer and use it in GitHub Desktop.
Manage neovim python versions with pyenv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pyenv virtualenv 2.7.14 neovim2 | |
pyenv virtualenv 3.6.5 neovim3 | |
pyenv activate neovim2 | |
pip install neovim | |
pyenv which python # Note the path | |
pyenv activate neovim3 | |
pip install neovim | |
pyenv which python # Note the path |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment