![]() Release status: experimental |
|
---|---|
Description | Jupyter notebooks in MediaWiki |
Author(s) | YuviPandatalk |
Latest version | 0.0.1 |
MediaWiki | 1.25+ |
PHP | 5.3+ |
Database changes | No |
License | MIT License |
Download | Download extension Git [?]: |
Quarterly downloads | 9 (Ranked 161st) |
Translate the NotebookViewer extension if it is available at translatewiki.net | |
This extension renders Jupyter Notebooks (formerly known as iPython Notebooks) within MediaWiki.
Installation
- Download and place the file(s) in a directory called
NotebookViewer
in yourextensions/
folder. - Add the following code at the bottom of your LocalSettings.php
wfLoadExtension( 'NotebookViewer' );
file: Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
To users running MediaWiki 1.24 or earlier:
The instructions above describe the new way of installing this extension using wfLoadExtension()
.
If you need to install this extension on these earlier versions (MediaWiki 1.24 and earlier), instead of wfLoadExtension( 'NotebookViewer' );
, you need to use:
require_once "$IP/extensions/NotebookViewer/NotebookViewer.php";
Vagrant installation:
- If using Vagrant
vagrant roles enable notebook --provision
, install with
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.