Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jupyter-vim/jupyter-vim
Make Vim talk to Jupyter kernels
https://github.com/jupyter-vim/jupyter-vim
hacktoberfest jupyter python vim-plugin
Last synced: 14 days ago
JSON representation
Make Vim talk to Jupyter kernels
- Host: GitHub
- URL: https://github.com/jupyter-vim/jupyter-vim
- Owner: jupyter-vim
- License: other
- Created: 2019-06-27T13:00:19.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-27T12:26:53.000Z (5 months ago)
- Last Synced: 2024-08-01T16:52:42.170Z (3 months ago)
- Topics: hacktoberfest, jupyter, python, vim-plugin
- Language: Python
- Homepage:
- Size: 862 KB
- Stars: 513
- Watchers: 13
- Forks: 38
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Jupyter-Vim
A two-way integration between Vim and Jupyter. Develop code on a Jupyter notebook without leaving the terminal. Send lines from Vim to a jupyter qtconsole. Have a MATLAB-like "cell-mode".
Currently supports the following kernels: Bash, C++, C, Java, Javascript, Julia, Perl, Raku, Python, Raku, Ruby, Rust, and R. Find more information [here](https://github.com/jupyter-vim/jupyter-vim/wiki/Supported-kernel-languages)
[![Video demo](demo.png)](https://www.youtube.com/watch?v=h59cbg4HqpY)
## Installation of the plugin
To install this plugin, you should use one of the following methods.
On __Windows__, replace in the next sections the Unix directories with the following:
* On __Vim__:
* `~/.vim` -> `%USERPROFILE%\vimfiles`
* `~/.vimrc` -> `%USERPROFILE%\_vimrc`* On __Nvim__:
* `~/.local/share/nvim/site` -> `%USERPROFILE%\AppData\Local\nvim`Or other directories if you have configured/installed Vim/Nvim differently.
### Vim 8 package manager
```bash
mkdir -p ~/.vim/pack/git-plugins/start
git clone --depth 1 https://github.com/jupyter-vim/jupyter-vim.git ~/.vim/pack/git-plugins/start/jupyter-vim
```### NeoVim
```bash
mkdir -p ~/.local/share/nvim/site/pack/git-plugins/start
git clone --depth 1 https://github.com/jupyter-vim/jupyter-vim.git ~/.local/share/nvim/site/pack/git-plugins/start/jupyter-vim
```### Pathogen
```bash
cd ~/.vim/bundle
git clone https://github.com/jupyter-vim/jupyter-vim.git
```### Vundle
```vim
Plugin 'jupyter-vim/jupyter-vim'
```### Vim-Plug
```vim
Plug 'jupyter-vim/jupyter-vim'
```## Vim+Python configuration
In order for this plugin to work, **you must have Jupyter installed** in the
Python environment that vim's `pythonx` command uses. There are several possible strategies here.### Install jupyter into system python
When Vim is using your system python (the default on linux), you can just install Jupyter using a package manager. For example, on Ubuntu 18.04 and later:
```bash
$ sudo apt install jupyter jupyter-core
```
Alternatively, you can use `pip`:
```bash
$ sudo pip install jupyter
```### Dynamic mode
When Vim is compiled with Python in dynamic mode (`+python3/dyn`), you can point to the Python interpreter you wish to use in your `.vimrc`:
```vim
if has('nvim')
let g:python3_host_prog = '/path/to/python/bin/python3'
else
set pyxversion=3" OSX
set pythonthreedll=/Library/Frameworks/Python.framework/Versions/3.6/Python" Windows
set pythonthreedll=python37.dll
set pythonthreehome=C:\Python37
endif
```
Make sure to point it to a Python installation that has Jupyter installed.### Virtual environments
If either:
* you use a Python environment manager such as `virtualenv`, and thus need
Jupyter to be present no matter which environment is loaded from the shell
you open vim from, or
* you only use one Python environment but you don't want to install Jupyter
system-wide for whatever reason,then the easiest way to meet the Jupyter requirement is to configure vim to
load a designated virtualenv at startup. This is just to allow vim to call the
Jupyter client; you can run your Jupyter server in whatever Python environment
you want. From Vim, run:
```vim
:pythonx import sys; print(sys.version)
```This will tell you whether `pythonx` is using Python 2 or Python 3. (Or, see
`:help python_x` if you'd like to tweak your `pythonx` settings.) Create a
virtualenv with that python version, for example
```bash
$ virtualenv -p /usr/bin/python2.7 /path/to/my/new/vim_virtualenv
```or
```bash
$ virtualenv -p /usr/bin/python3 /path/to/my/new/vim_virtualenv
```and then install Jupyter in that environment:
```bash
$ source /path/to/my/new/vim_virtualenv/bin/activate
$ pip install jupyter
```Finally, tell vim to load this virtualenv at startup by adding these lines to
your vimrc:
```vim
" Always use the same virtualenv for vim, regardless of what Python
" environment is loaded in the shell from which vim is launched
let g:vim_virtualenv_path = '/path/to/my/new/vim_virtualenv'
if exists('g:vim_virtualenv_path')
pythonx import os; import vim
pythonx activate_this = os.path.join(vim.eval('g:vim_virtualenv_path'), 'bin/activate_this.py')
pythonx with open(activate_this) as f: exec(f.read(), {'__file__': activate_this})
endif
```## Jupyter configuration
First, we need to configure the jupyter console and qtconsole clients to
display output from other clients.The config files can be found in in `~/.jupyter`, if they don't exist yet you
can generate them with:
```bash
$ jupyter console --generate-config
$ jupyter qtconsole --generate-config
```Now you need to uncomment and change the following config options to `True`.
- qtconsole
Edit this following file: `~/.jupyter/jupyter_qtconsole_config.py`
```python
c.ConsoleWidget.include_other_output = True
```- console
Edit the following file: `~/.jupyter/jupyter_console_config.py`
```python
c.ZMQTerminalInteractiveShell.include_other_output = True
```## Usage
To begin a session:
```bash
$ jupyter qtconsole & # open a jupyter console window
$ vim .py
```In vim: `:JupyterConnect`
Then, use `:JupyterRunFile`, or `:[range]JupyterSendRange` to execute lines of
code!Code will be sent and executed as expected in the graphical `jupyter qtconsole`.
However, in the console version `jupyter console`, the result will only show after you press the `Enter` key.By default, the following keybindings are defined:
```vim
" Run current file
nnoremap R :JupyterRunFile
nnoremap I :PythonImportThisFile" Change to directory of current file
nnoremap d :JupyterCd %:p:h" Send a selection of lines
nnoremap X :JupyterSendCell
nnoremap E :JupyterSendRange
nmap e JupyterRunTextObj
vmap e JupyterRunVisual" Debugging maps
nnoremap b :PythonSetBreak
```Set `let g:jupyter_mapkeys = 0` in your `.vimrc` to prevent the default keybindings from being made.
## Related plugin
* [vim-repl](https://github.com/sillybun/vim-repl): Instead of connecting to, embed the REPL in vim
* [vimpyter](https://github.com/szymonmaszke/vimpyter): Integration with jupyter, even the notebook
* [vim-ipython-cell](https://github.com/hanschen/vim-ipython-cell): send cell to jupyter via slime, requires terminal multiplexing instead of zeromq to communicate (higer level)
* [jupytext.vim](https://github.com/goerz/jupytext.vim): Convert notebook files to vim buffers## Info
Once we fell in love with Vim, we couldn't bear having to jump back and forth
between the ipython/jupyter console and editor anymore. We modeled this simple
interface off of the ideas in
[vim-ipython](https://github.com/ivanov/vim-ipython), but have pared down many
of the features, like the replication of the Jupyter console in a vim buffer,
to make the plugin much more 'lightweight'.Still a work in progress!
## Troubleshooting
* Make sure that you are running Vim 8 or higher with Python 3 support.
* When on windows, you are probably running 64-bit Python. Make sure you also run a 64-bit version of Vim (the default install is 32-bit!).### Contributing
Please feel free to raise issues and pull requests on
[the github repository](https://github.com/jupyter-vim/jupyter-vim).### Credits
We owe significant thanks to the original developer of this plugin:
[Paul Ivanov](https://github.com/ivanov).
It is far easier to update something that already works well than to forge
a new path from scratch.