1650157200
IPython/Jupyter notebook module for Vega 5, and Vega-Lite 4. Notebooks with embedded visualizations can be viewed on GitHub and nbviewer. If you use JupyterLab (not the notebook), you don't need to install this extension since JupyterLab comes with built-in support for Vega and Vega-Lite.
Available on pypi and Conda Forge as vega
.
To install vega
and its dependencies from the Python Package Index using pip
, use the following commands:
pip install jupyter pandas vega
pip install --upgrade notebook # need jupyter_client >= 4.2 for sys-prefix below
jupyter nbextension install --sys-prefix --py vega # not needed in notebook >= 5.3
If you use Conda, you probably already have the latest versions of the notebook and pandas installed. To install vega
extension run:
conda install vega
Once the package is installed, run
jupyter notebook
to launch the Jupyter notebook server, and use vega
within the notebook. See the example notebooks for Vega-Lite and Vega.
To run the notebooks yourself, you need to get the file cars.json
.
This project uses Poetry. If you prefer a local virtual environment, run poetry config virtualenvs.in-project true
first. Install requirements: poetry install
.
Then activate the virtual environment with poetry shell
.
Symlink files instead of copying files:
jupyter nbextension install --py --symlink vega
Run kernel with jupyter notebook
. Run the tests with pytest vega
.
To rebuild the JavaScript continuously, run yarn watch
.
package.json
(e.g. with ncu).yarn
.pyproject.toml
(with poetry version [VERSION]
), package.json
, widget.py
, and __init__.py
yarn build
.git push --tags
.npm publish
to update https://www.npmjs.com/package/jupyter-vega.poetry publish --build
to update https://pypi.python.org/pypi/vega.The Conda feedstock for this package is at https://github.com/conda-forge/vega-feedstock. It should update automatically but we may need to merge a pull request with the updates.
Author: vega
Source Code: https://github.com/vega/ipyvega
License: BSD-3-Clause License
1591267200
Nosso convidado de hoje é diretor técnico na Work & Co, PhD em Ciências da Computação, já contribuiu com inúmeros projetos open source em Python, ajudou a fundar a Associação Python Brasil e já foi premiado com o Prêmio Dorneles Tremea por contribuições para a comunidade Python Brasil.
#alexandre oliva #anaconda #apache zeppelin #associação python brasil #azure notebooks #beakerx #binder #c++ #closure #colaboratory #donald knuth #fernando pérez #fortran #graphql #guido van rossum #ipython #java #javascript #json #jupyter kenels #jupyter notebooks #jupyterhub #jupyterlab #latex #lisp #literate programming #lua #matlab #perl #cinerdia #prêmio dorneles tremea #python #r #rodrigo senra #scala #spark notebook #tcl #typescript #zope
1650157200
IPython/Jupyter notebook module for Vega 5, and Vega-Lite 4. Notebooks with embedded visualizations can be viewed on GitHub and nbviewer. If you use JupyterLab (not the notebook), you don't need to install this extension since JupyterLab comes with built-in support for Vega and Vega-Lite.
Available on pypi and Conda Forge as vega
.
To install vega
and its dependencies from the Python Package Index using pip
, use the following commands:
pip install jupyter pandas vega
pip install --upgrade notebook # need jupyter_client >= 4.2 for sys-prefix below
jupyter nbextension install --sys-prefix --py vega # not needed in notebook >= 5.3
If you use Conda, you probably already have the latest versions of the notebook and pandas installed. To install vega
extension run:
conda install vega
Once the package is installed, run
jupyter notebook
to launch the Jupyter notebook server, and use vega
within the notebook. See the example notebooks for Vega-Lite and Vega.
To run the notebooks yourself, you need to get the file cars.json
.
This project uses Poetry. If you prefer a local virtual environment, run poetry config virtualenvs.in-project true
first. Install requirements: poetry install
.
Then activate the virtual environment with poetry shell
.
Symlink files instead of copying files:
jupyter nbextension install --py --symlink vega
Run kernel with jupyter notebook
. Run the tests with pytest vega
.
To rebuild the JavaScript continuously, run yarn watch
.
package.json
(e.g. with ncu).yarn
.pyproject.toml
(with poetry version [VERSION]
), package.json
, widget.py
, and __init__.py
yarn build
.git push --tags
.npm publish
to update https://www.npmjs.com/package/jupyter-vega.poetry publish --build
to update https://pypi.python.org/pypi/vega.The Conda feedstock for this package is at https://github.com/conda-forge/vega-feedstock. It should update automatically but we may need to merge a pull request with the updates.
Author: vega
Source Code: https://github.com/vega/ipyvega
License: BSD-3-Clause License
1672193648
The Jupyter notebook is a web-based notebook environment for interactive computing.
We maintain the two most recently released major versions of Jupyter Notebook, Notebook v5 and Classic Notebook v6. After Notebook v7.0 is released, we will no longer maintain Notebook v5. All Notebook v5 users are strongly advised to upgrade to Classic Notebook v6 as soon as possible.
The Jupyter Notebook project is currently undertaking a transition to a more modern code base built from the ground-up using JupyterLab components and extensions.
There is new stream of work which was submitted and then accepted as a Jupyter Enhancement Proposal (JEP) as part of the next version (v7): https://jupyter.org/enhancement-proposals/79-notebook-v7/notebook-v7.html
There is also a plan to continue maintaining Notebook v6 with bug and security fixes only, to ease the transition to Notebook v7: https://github.com/jupyter/notebook-team-compass/issues/5#issuecomment-1085254000
The next major version of Notebook will be based on:
This represents a significant change to the jupyter/notebook
code base.
To learn more about Notebook v7: https://jupyter.org/enhancement-proposals/79-notebook-v7/notebook-v7.html
Maintainance and security-related issues are now being addressed in the 6.4.x
branch.
A 6.5.x
branch will be soon created and will depend on nbclassic
for the HTML/JavaScript/CSS assets.
New features and continuous improvement is now focused on Notebook v7 (see section above).
If you have an open pull request with a new feature or if you were planning to open one, we encourage switching over to the Jupyter Server and JupyterLab architecture, and distribute it as a server extension and / or JupyterLab prebuilt extension. That way your new feature will also be compatible with the new Notebook v7.
Jupyter notebook is a language-agnostic HTML notebook application for Project Jupyter. In 2015, Jupyter notebook was released as a part of The Big Split™ of the IPython codebase. IPython 3 was the last major monolithic release containing both language-agnostic code, such as the IPython notebook, and language specific code, such as the IPython kernel for Python. As computing spans across many languages, Project Jupyter will continue to develop the language-agnostic Jupyter notebook in this repo and with the help of the community develop language specific kernels which are found in their own discrete repos.
You can find the installation documentation for the Jupyter platform, on ReadTheDocs. The documentation for advanced usage of Jupyter notebook can be found here.
For a local installation, make sure you have pip installed and run:
pip install notebook
Launch with:
jupyter notebook
You need some configuration before starting Jupyter notebook remotely. See Running a notebook server.
See CONTRIBUTING.md
for how to set up a local development installation.
If you are interested in contributing to the project, see CONTRIBUTING.md
.
This repository is a Jupyter project and follows the Jupyter Community Guides and Code of Conduct.
Author: Jupyter
Source Code: https://github.com/jupyter/notebook
License: View license
1641458294
IPython/Jupyter notebook module for Vega 5, and Vega-Lite 4. Notebooks with embedded visualizations can be viewed on GitHub and nbviewer. If you use JupyterLab (not the notebook), you don't need to install this extension since JupyterLab comes with built-in support for Vega and Vega-Lite.
Available on pypi and Conda Forge as vega
.
To install vega
and its dependencies from the Python Package Index using pip
, use the following commands:
pip install jupyter pandas vega
pip install --upgrade notebook # need jupyter_client >= 4.2 for sys-prefix below
jupyter nbextension install --sys-prefix --py vega # not needed in notebook >= 5.3
If you use Conda, you probably already have the latest versions of the notebook and pandas installed. To install vega
extension run:
conda install vega
Once the package is installed, run
jupyter notebook
to launch the Jupyter notebook server, and use vega
within the notebook. See the example notebooks for Vega-Lite and Vega.
To run the notebooks yourself, you need to get the file cars.json
.
This project uses Poetry. If you prefer a local virtual environment, run poetry config virtualenvs.in-project true
first. Install requirements: poetry install
.
Then activate the virtual environment with poetry shell
.
Symlink files instead of copying files:
jupyter nbextension install --py --symlink vega
Run kernel with jupyter notebook
. Run the tests with pytest vega
.
To rebuild the JavaScript continuously, run yarn watch
.
package.json
(e.g. with ncu).yarn
.yarn build
.pyproject.toml
(with poetry version [VERSION]
), package.json
, and __init__.py
and add a git tag.git push --tags
.poetry publish --build
to update https://pypi.python.org/pypi/vega.The Conda feedstock for this package is at https://github.com/conda-forge/vega-feedstock. It should update automatically but we may need to merge a pull request with the updates.
Author: Vega
Source Code: https://github.com/vega/ipyvega
License: BSD-3-Clause License
1675657760
pip uninstall mopp
For Mac and other Ubuntu installations not having a nvidia GPU, we need to explicitly set an environment variable at time of install.
export JUPYTER_TEXT2CODE_MODE="cpu"
sudo apt-get install libopenblas-dev libomp-dev
git clone https://github.com/deepklarity/jupyter-text2code.git
cd jupyter-text2code
pip install .
jupyter nbextension enable jupyter-text2code/main
pip uninstall jupyter-text2code
jupyter notebook
Nbextensions
tab in Jupyter notebook run the following command:jupyter contrib nbextension install --user
notebooks/ctds.ipynb
notebook for testingtensorflow_hub
Terminal
Icon which appears on the menu (to activate the extension)We have published CPU and GPU images to docker hub with all dependencies pre-installed.
Visit https://hub.docker.com/r/deepklarity/jupyter-text2code/ to download the images and usage instructions.
CPU image size: 1.51 GB
GPU image size: 2.56 GB
The plugin now supports pandas commands + quick snippet insertion of available snippets from awesome-notebooks. With this change, we can now get snippets for most popular integrations from within the jupyter tab. eg:
paraphrase-MiniLM-L6-v2
ner_templates
with a new intent_idgenerate_training_data.py
if different generation techniques are needed or if introducing a new entity.jupyter_text2code/jupyter_text2code_serverextension/__init__.py
with new intent's condition and add actual code for the intentpip install .
Author: Deepklarity
Source Code: https://github.com/deepklarity/jupyter-text2code
License: MIT license