Jupyter: Difference between revisions
Jump to navigation
Jump to search
(Created page with "==References== * [https://jupyterlab.readthedocs.io/en/stable/getting_started/installation.html Getting started with JupyterLab] * [https://jupyter.org/install Installing the...") |
|||
(23 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{| | |||
| valign="top" | | |||
'''JupyterLab''' | |||
pip install jupyterlab | |||
jupyter-lab | |||
| valign="top" | | |||
'''Classic Jupyter Notebook''' | |||
pip install notebook | |||
jupyter notebook | |||
| valign="top" | | |||
'''Voilà''' | |||
pip install voila | |||
voila | |||
|} | |||
==Java Tensorflow== | |||
<source lang="xml"> | |||
<parent> | |||
<groupId>org.springframework.cloud</groupId> | |||
<artifactId>spring-cloud-starter-parent</artifactId> | |||
<version>Camden.SR7</version> | |||
</parent> | |||
<dependencies> | |||
<dependency> | |||
<groupId>org.springframework.boot</groupId> | |||
<artifactId>spring-boot-starter-web</artifactId> | |||
</dependency> | |||
<dependency> | |||
<groupId>org.tensorflow</groupId> | |||
<artifactId>tensorflow</artifactId> | |||
<version>1.8.0</version> | |||
</dependency> | |||
<dependency> | |||
<groupId>org.springframework.boot</groupId> | |||
<artifactId>spring-boot-starter-test</artifactId> | |||
<scope>test</scope> | |||
</dependency> | |||
<dependency> | |||
<groupId>com.google.code.gson</groupId> | |||
<artifactId>gson</artifactId> | |||
<scope>test</scope> | |||
</dependency> | |||
</dependencies> | |||
</source> | |||
==References== | ==References== | ||
{| | |||
| valign="top" | | |||
* [https://jupyter.readthedocs.io/en/latest/use/config.html Jupyter’s Common Configuration Approach] | |||
* [https://jupyter.readthedocs.io/en/latest/use/jupyter-directories.html Common Directories and File Locations] | |||
* [https://jupyterlab.readthedocs.io/en/stable/getting_started/installation.html Getting started with JupyterLab] | * [https://jupyterlab.readthedocs.io/en/stable/getting_started/installation.html Getting started with JupyterLab] | ||
* [https://jupyter.org/install Installing the Jupyter Software] | * [https://jupyter.org/install Installing the Jupyter Software] | ||
* [https://jupyter.readthedocs.io/en/latest/install.html Jupyter Tools Install and Use] | |||
* [https://jupyterlab.readthedocs.io/en/stable/user/jupyterhub.html JupyterLab on JupyterHub] | |||
* [https://voila.readthedocs.io/en/stable/install.html Getting started with Voilà] | |||
* [https://jupyter.readthedocs.io/en/latest/use/jupyter-command.html The jupyter Command] | |||
* [https://jupyter.readthedocs.io/en/latest/use/using.html Using Jupyter Tools] | |||
* [[Machine Learning]] | |||
| valign="top" | | |||
* [https://jupyter.readthedocs.io/en/latest/running.html Getting started with the classic Jupyter Notebook] | |||
* [https://blog.jupyter.org/interactive-workflows-for-c-with-jupyter-fe9b54227d92 Interactive Workflows for C++ with Jupyter] | |||
* [https://stackoverflow.com/questions/26338688/ Run ipython notebook with Python] | |||
* [https://medium.com/dsights/export-charts-from-jupyter-notebook-to-flask-app-with-few-lines-of-code-ad4dca134ba Export Jupyter Charts into Flask] | |||
* [https://stackoverflow.com/questions/61676773/ Compile & run Java on Jupyter] | |||
* [https://github.com/spencerpark/IJava IJava a Jupyter kernel for Java] | |||
* [https://github.com/JuliaLang/IJulia.jl IJulia a Jupyter kernel for Julia] | |||
* [https://github.com/jupyter-xeus/xeus Xeus a Jupyter kernel for C++] | |||
* [https://stackoverflow.com/questions/33972860/ Jupyter kernel for Java] | |||
* [https://github.com/jupyter/jupyter/wiki/Jupyter-kernels Jupyter kernel List] | |||
| valign="top" | | |||
* [https://stackoverflow.com/questions/47567834/ Run a Jupyter Notebook cell Programmatically] | |||
* [https://stackoverflow.com/questions/38622610/ Execute IPython notebook cell by Python] | |||
* [https://medium.com/@gmsharpe/jupyter-java-and-google-colab-7a2f7fb08808 Java, Jupyter and Google Colab] | |||
* [https://towardsdatascience.com/4-jupyter-notebook-alternative-for-data-scientist-da3d47ff40b0 Jupyter Notebook Alternatives] | |||
* [https://blog.mimacom.com/getting-started-tensorflow-spring/ Tensorflow and Java-Spring] | |||
* [https://blog.jupyter.org/and-voil%C3%A0-f6a2c08a4a93 And Voilà] | |||
* [https://jupyter.org/ Jupyter] | |||
* [[Spark]] | |||
* [[NLP]] | |||
|} |
Latest revision as of 21:35, 23 September 2022
JupyterLab pip install jupyterlab jupyter-lab |
Classic Jupyter Notebook pip install notebook jupyter notebook |
Voilà pip install voila voila |
Java Tensorflow
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-parent</artifactId>
<version>Camden.SR7</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.tensorflow</groupId>
<artifactId>tensorflow</artifactId>
<version>1.8.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<scope>test</scope>
</dependency>
</dependencies>