To preface this, I am not very experienced with code and I am still learning and trying new things so sorry if I might come off as stupid here. I’ve tried following other guides on this community forum and other pages but nothing seems to be working or related to my issue.
This isn’t really much of a “debugging” per say but I’ve been trying to run my LLM through streamlit and I’ve been running the code I find online to try to get the unique link that it sends out
!pip install -q streamlit
!npm install -g localtunnel
%%writefile app.py
! wget -q -O - ipv4.icanhazip.com
! streamlit run app.py & npx localtunnel --port 8501
but the issue is that when I run the last line, the output stops at
Collecting usage statistics. To deactivate, set browser.gatherUsageStats to false. You can now view your Streamlit app in your browser. Local URL: http://localhost:8501 Network URL: … External URL: …
There were numbers and lines there, I just blanked them out. However, when I go over videos and I see how it is supposed to be output, there should be a unique URL, but I just don’t ever receive one no matter how long I wait. Is there anything I’m doing wrong or missing? I thought it might’ve been my code, so I even tried running it with a blank app.py and a very simple function like print(“Hello World”) but it still doesn’t provided a URL.
For reference, I used this Github code (Streamlit-web-application-tutorial/01_part_streamlit_tutorial.ipynb at main · md-darun-nayeem/Streamlit-web-application-tutorial · GitHub) and also this community post (How to Launch Streamlit App from Google Colab Notebook).
Thanks in advance