Description
Description
-
I installed jupyter notebook in a python environment can 'env'. This 'env' environment is created using the command
'''bash
python -m venv env
''' -
After that I installed jupyter notebook using the command and opened it using the next command
'''bash
pip install notebook
jupyter notebook
''' -
After opening the jupyter notebook using the above command, it displays a blank white page in the browser with no folders or menu options. I am using brave browser on my Macbook pro m1 pro() 14 inches. All the commands are executed in the terminal app of the mac. The MacOS version is Sonoma 14.4.1(23E224).
-
After I executed the command 'jupyter notebook' in the terminal I got the following output in the terminal.
'''
jupyter notebook
[I 2024-05-18 01:03:16.824 ServerApp] jupyter_lsp | extension was successfully linked.
[I 2024-05-18 01:03:16.826 ServerApp] jupyter_server_terminals | extension was successfully linked.
[I 2024-05-18 01:03:16.828 ServerApp] jupyterlab | extension was successfully linked.
[I 2024-05-18 01:03:16.830 ServerApp] notebook | extension was successfully linked.
[I 2024-05-18 01:03:16.920 ServerApp] notebook_shim | extension was successfully linked.
[I 2024-05-18 01:03:16.961 ServerApp] notebook_shim | extension was successfully loaded.
[I 2024-05-18 01:03:16.962 ServerApp] jupyter_lsp | extension was successfully loaded.
[I 2024-05-18 01:03:16.962 ServerApp] jupyter_server_terminals | extension was successfully loaded.
[I 2024-05-18 01:03:16.963 LabApp] JupyterLab extension loaded from /Users/abhay/Desktop/college/uoa/applied_nlp/assignments/env/lib/python3.11/site-packages/jupyterlab
[I 2024-05-18 01:03:16.963 LabApp] JupyterLab application directory is /Users/abhay/Desktop/college/uoa/applied_nlp/assignments/env/share/jupyter/lab
[I 2024-05-18 01:03:16.963 LabApp] Extension Manager is 'pypi'.
[I 2024-05-18 01:03:16.971 ServerApp] jupyterlab | extension was successfully loaded.
[I 2024-05-18 01:03:16.972 ServerApp] notebook | extension was successfully loaded.
[I 2024-05-18 01:03:16.973 ServerApp] Serving notebooks from local directory: /Users/abhay/Desktop/college/uoa/applied_nlp/assignments
[I 2024-05-18 01:03:16.973 ServerApp] Jupyter Server 2.14.0 is running at:
[I 2024-05-18 01:03:16.973 ServerApp] http://localhost:8888/tree?token=7372282445b48552863710731647153a2b0807e52a8eb7a7
[I 2024-05-18 01:03:16.973 ServerApp] http://127.0.0.1:8888/tree?token=7372282445b48552863710731647153a2b0807e52a8eb7a7
[I 2024-05-18 01:03:16.973 ServerApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 2024-05-18 01:03:16.977 ServerApp]
To access the server, open this file in a browser:
file:///Users/abhay/Library/Jupyter/runtime/jpserver-6179-open.html
Or copy and paste one of these URLs:
http://localhost:8888/tree?token=7372282445b48552863710731647153a2b0807e52a8eb7a7
http://127.0.0.1:8888/tree?token=7372282445b48552863710731647153a2b0807e52a8eb7a7
[I 2024-05-18 01:03:17.195 ServerApp] Skipped non-installed server(s): bash-language-server, dockerfile-language-server-nodejs, javascript-typescript-langserver, jedi-language-server, julia-language-server, pyright, python-language-server, python-lsp-server, r-languageserver, sql-language-server, texlab, typescript-language-server, unified-language-server, vscode-css-languageserver-bin, vscode-html-languageserver-bin, vscode-json-languageserver-bin, yaml-language-server
'''
Activity