Difference between revisions of "Jupyter Notebook"
Jump to navigation
Jump to search
Rafahsolis (talk | contribs) (Created page with "== Remove kernel == <syntaxhighlight lang="bash"> ipython kernelspec uninstall kernel_name </syntaxhighlight>") Tag: visualeditor |
Rafahsolis (talk | contribs) m Tag: visualeditor |
||
| Line 1: | Line 1: | ||
| − | == Remove kernel == | + | == Add kernel == |
| + | <syntaxhighlight lang="bash"> | ||
| + | pip install ipykernel | ||
| + | /home/xe50582/.virtualenvs/text_clustering/bin/python -m ipykernel install --prefix=/home/xe50582/.virtualenvs/text_clustering/ --name 'text_clustering' | ||
| + | </syntaxhighlight> | ||
| + | |||
| + | ==Remove kernel== | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
ipython kernelspec uninstall kernel_name | ipython kernelspec uninstall kernel_name | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 07:46, 16 May 2019
Add kernel
pip install ipykernel
/home/xe50582/.virtualenvs/text_clustering/bin/python -m ipykernel install --prefix=/home/xe50582/.virtualenvs/text_clustering/ --name 'text_clustering'
Remove kernel
ipython kernelspec uninstall kernel_name