Why won’t Jupyter Notebook (or Lab) open in Anaconda Navigator or cmd

I’ve tried opening Jupyter notebook through anaconda navigator, as well as in the anaconda cmd.exe command line. Anaconda Navigator will show that blue loading bar in the bottom right corner but nothing happens. Trying to open with the command line gives me this output.

jupyter notebook
[I 2024-08-13 12:26:24.387 ServerApp] Extension package aext_assistant took 0.1660s to import
[I 2024-08-13 12:26:24.402 ServerApp] ****************** ENVIRONMENT Environment.PRODUCTION ******************
[I 2024-08-13 12:26:24.402 ServerApp] ****************** ENVIRONMENT Environment.PRODUCTION ******************
[W 2024-08-13 12:26:24.433 ServerApp] A `_jupyter_server_extension_points` function was not found in jupyter_lsp. Instead, a `_jupyter_server_extension_paths` function was found and will be used for now. This function name will be deprecated in future releases of Jupyter Server.
[W 2024-08-13 12:26:24.495 ServerApp] A `_jupyter_server_extension_points` function was not found in notebook_shim. Instead, a `_jupyter_server_extension_paths` function was found and will be used for now. This function name will be deprecated in future releases of Jupyter Server.
[I 2024-08-13 12:26:25.303 ServerApp] Extension package panel.io.jupyter_server_extension took 0.8029s to import
[I 2024-08-13 12:26:25.303 ServerApp] aext_assistant | extension was successfully linked.
[I 2024-08-13 12:26:25.303 ServerApp] aext_core | extension was successfully linked.
[I 2024-08-13 12:26:25.303 ServerApp] aext_panels | extension was successfully linked.
[I 2024-08-13 12:26:25.303 ServerApp] aext_share_notebook | extension was successfully linked.
[I 2024-08-13 12:26:25.303 ServerApp] jupyter_lsp | extension was successfully linked.
[I 2024-08-13 12:26:25.303 ServerApp] jupyter_server_terminals | extension was successfully linked.
[I 2024-08-13 12:26:25.303 ServerApp] jupyterlab | extension was successfully linked.
[I 2024-08-13 12:26:25.313 ServerApp] notebook | extension was successfully linked.
[I 2024-08-13 12:26:25.548 ServerApp] notebook_shim | extension was successfully linked.
[I 2024-08-13 12:26:25.548 ServerApp] panel.io.jupyter_server_extension | extension was successfully linked.
[I 2024-08-13 12:26:25.580 ServerApp] notebook_shim | extension was successfully loaded.
[I 2024-08-13 12:26:25.580 ServerApp] Registered aext_assistant server extension
[I 2024-08-13 12:26:25.580 ServerApp] aext_assistant | extension was successfully loaded.
[I 2024-08-13 12:26:25.580 ServerApp] Registered aext_core server extension
[I 2024-08-13 12:26:25.580 ServerApp] aext_core | extension was successfully loaded.
[I 2024-08-13 12:26:25.580 ServerApp] Registered aext_panels server extension
[I 2024-08-13 12:26:25.580 ServerApp] aext_panels | extension was successfully loaded.
[I 2024-08-13 12:26:25.580 ServerApp] Registered aext_share_notebook_server server extension
[I 2024-08-13 12:26:25.580 ServerApp] aext_share_notebook | extension was successfully loaded.
[I 2024-08-13 12:26:25.580 ServerApp] jupyter_lsp | extension was successfully loaded.
[I 2024-08-13 12:26:25.580 ServerApp] jupyter_server_terminals | extension was successfully loaded.
[I 2024-08-13 12:26:25.595 LabApp] JupyterLab extension loaded from C:Softwareanaconda3Libsite-packagesjupyterlab
[I 2024-08-13 12:26:25.595 LabApp] JupyterLab application directory is C:Softwareanaconda3sharejupyterlab
[I 2024-08-13 12:26:25.595 LabApp] Extension Manager is 'pypi'.
[I 2024-08-13 12:26:25.595 ServerApp] jupyterlab | extension was successfully loaded.
[I 2024-08-13 12:26:25.604 ServerApp] notebook | extension was successfully loaded.
[I 2024-08-13 12:26:25.604 ServerApp] panel.io.jupyter_server_extension | extension was successfully loaded.
[I 2024-08-13 12:26:25.604 ServerApp] The port 8888 is already in use, trying another port.
[I 2024-08-13 12:26:25.604 ServerApp] Serving notebooks from local directory: C:UsersNETL-ris398
[I 2024-08-13 12:26:25.604 ServerApp] Jupyter Server 2.14.1 is running at:
[I 2024-08-13 12:26:25.604 ServerApp] http://localhost:8889/tree?token=4c9608e761cdbbe288c4bd627c6e4ef5c03ef28e3b7adff1
[I 2024-08-13 12:26:25.604 ServerApp]     http://127.0.0.1:8889/tree?token=4c9608e761cdbbe288c4bd627c6e4ef5c03ef28e3b7adff1
[I 2024-08-13 12:26:25.611 ServerApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 2024-08-13 12:26:25.627 ServerApp]

    To access the server, open this file in a browser:
        file:///C:/Users/NETL-ris398/AppData/Roaming/jupyter/runtime/jpserver-28988-open.html
    Or copy and paste one of these URLs:
        http://localhost:8889/tree?token=4c9608e761cdbbe288c4bd627c6e4ef5c03ef28e3b7adff1
        http://127.0.0.1:8889/tree?token=4c9608e761cdbbe288c4bd627c6e4ef5c03ef28e3b7adff1
[I 2024-08-13 12:26:25.704 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, 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

This is still running, blinking cursor and all, without erroring or progressing. I’m not sure what part of this output indicates a problem. May be interesting to note, despite what it says, inputting Control-c does not stop it.

I have updated conda, my environment, and jupyter as well as running install for all of these to ensure that they were on my computer at all. At one point I was getting a package inconsistency error but that was fixed with conda update --all

New contributor

Rachael Seidel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

2

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật