nothing shows up on the local client
See original GitHub issuewhen i run the python example code on jupyter notebook ,nothing shows up on the client and there is no error. i’m running python3.5.2 on windows, with visdom 0.1.5 pip installed. i’m running the code:
import visdom
import numpy as np
vis = visdom.Visdom()
vis.text('Hello, world!')
vis.image(np.ones((3, 10, 10)))
the putput is 'pane_356f8b50f9580a'
. it seems to be correctly creating a pane, but there is nothing showing up on http://localhost:8097/. and the visdom server gave:
It's Alive!
INFO:tornado.access:304 GET / (::1) 3.01ms
INFO:tornado.access:304 GET /favicon.png (::1) 1.00ms
INFO:tornado.access:200 POST /events (::1) 0.00ms
INFO:tornado.access:200 POST /events (::1) 1.00ms
any idea about what’s wrong? thanks
Issue Analytics
- State:
- Created 6 years ago
- Comments:8 (3 by maintainers)
Top Results From Across the Web
Network Computers are not Showing Up in Windows 10/11
Then go to Settings -> Network and Internet -> Ethernet (or select Wi-Fi, if you are connected to a local network through a...
Read more >nothing shows up on the local client · Issue #141 - GitHub
when i run the python example code on jupyter notebook ,nothing shows up on the client and there is no error. i'm running...
Read more >Blank desktop after you log on - Windows Client
Method 1 · Click Start, Run, type lusrmgr.msc, and then press ENTER. · Select Groups in the left pane. · Double-click Users in...
Read more >Windows 10 Computer Not Showing Up on the Network? 6 ...
There are a few services that need to be running on your PC for it to appear on the network. If they aren't...
Read more >FIX: Windows 10 Network Computers Not Showing in Explorer ...
This article contains instructions to fix the following issue in Windows 10: Network Computers Not Showing in Explorer. The issue commonly appears after ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@lvdmaaten @ajabri @praveenofpersia Thank you very much, it works now. It’s the same issue as #111 and #128. The Developer Javascript Console shows that the browser can not fetch the following external javascript dependencies from the web:
This problem can be solved by downloading the packages or using proxy, like y406539259 said in #111.
plotly.min.js
andreact-grid-layout.min.js
files from plotly.js and react-gird-layout.where_you_install_visdom/visdom/static/js/
.where_you_install_visdom/visdom/static/index.html
, like this:Web browser can fetch them locally now and Visdom works!
Thank you all!
Yes, please check out #111 .