Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomstitt/lupyter
A Lua Kernel for Jupyter built on ipykernel.
https://github.com/tomstitt/lupyter
jupyter jupyter-notebook kernel lua
Last synced: 2 months ago
JSON representation
A Lua Kernel for Jupyter built on ipykernel.
- Host: GitHub
- URL: https://github.com/tomstitt/lupyter
- Owner: tomstitt
- License: mit
- Created: 2016-07-07T16:33:57.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2021-02-27T05:01:03.000Z (almost 4 years ago)
- Last Synced: 2024-10-09T20:48:45.976Z (3 months ago)
- Topics: jupyter, jupyter-notebook, kernel, lua
- Language: C
- Homepage:
- Size: 31.3 KB
- Stars: 13
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# A Lua Kernel for Jupyter
Lupyter is a Lua kernel built on [ipykernel](https://github.com/ipython/ipykernel).
Tab-completion is available but documentation lookup is still a work in progress.## Installing
In most cases it's enough to `pip install` with `LUA_DIR` pointing
to your Lua installation but if Lua is installed
in your `PATH` you may not need `LUA_DIR`. You can always add
`-v` after `pip install` if your Lua install isn't found and you
want to see a list of the directories searched.```
[LUA_DIR=/path/to/your/lua_root] pip install .
```If your Python is in a weird place the kernelspec might not be
visible to Jupyter.You can confirm that the kernelspec was install correctly with:
```
jupyter kernelspec list
```If the kernelspec isn't in the list check which paths Jupyter can see
and make sure your kernelspec was installed to one of them:```
jupyter --paths
```You can manually install to one of those paths with:
```
jupyter kernelspec install data_kernelspec --name lupyter --prefix ...
```