Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
Start Jupyter in Conda Environment
How to Start Jupyter in Conda Environment?
✍: FYIcenter.com
If you have installed Jupyter in the system default Conda environment,
you can start it with the "jupyter notebook" command
as shown in this tutorial.
1. Run "jupyter notebook" command to start Jupyter. You see messages confirming that the Jupyter server is started.
fyicenter$ which jupyter
/usr/local/anaconda3/bin/jupyter
fyicenter$ jupyter notebook
[I NotebookApp] Writing notebook server cookie secret to
/home/fyicenter/.local/share/jupyter/runtime/notebook_cookie_secret
[I LabApp] JupyterLab extension loaded from
/usr/local/anaconda3/lib/python3.8/site-packages/jupyterlab
[I LabApp] JupyterLab application directory is
/usr/local/anaconda3/share/jupyter/lab
[I NotebookApp] Serving notebooks from local directory: /home/fyicenter
[I NotebookApp] Jupyter Notebook 6.3.0 is running at:
[I NotebookApp] http://localhost:8888/?token=5ffa0271...8c7f
[I NotebookApp] or http://127.0.0.1:8888/?token=5ffa0271...8c7f
[I NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C NotebookApp]
To access the notebook, open this file in a browser:
file:///home/fyicenter/.local/share/jupyter/runtime/nbserver-3769422-open.html
2. Jupyter will try to start the default Web browser and to connect to Jupyter server.
3. You can open your favorite Web browser and enter "http://localhost:8888/tree" to connect to Jupyter server. You see the file system displayed as a Jupyter Notebook.
You can now browse the file system and open an existing Jupyter Notebook, or create a new Jupyter Notebook.
If you have to install Jupyter in a specific Conda environment, you need to activate that environment, then run the "jupyter notebook".
fyicenter$ conda activate faq (faq) fyicenter$ which jupyter ~/anaconda3/envs/faq/bin/jupyter (faq) fyicenter$ jupyter notebook
⇐ Install Jupyter in Conda Environment
2021-11-12, 1471🔥, 0💬
Popular Posts:
How to save word documents into Unicode UTF-8 text files? When I convert Word documents into text fi...
How to unzip an XPS (XML Paper Specification, .xps) file? According to Microsoft documentation, an ....
Where to find answers to frequently asked questions in general understanding of Microsoft 365? Here ...
How to login to Facebook with a Web browser? If you want to login to Facebook with a Web browser, yo...
Why I am getting the "Warning: Unresponsive Script" message box? How to avoid this message box? When...