question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

How to run the server from source-build (documentation out of date?)

See original GitHub issue

Following the instructions for installing from source, and the usage documentation.

pip install -e .
python -m visdom.server

No module named visdom.server

This makes sense, looking at the directory structure of the project. So… how do I run the server, having installed from master? The demo is pretty much useless running off of the pip-build.

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:13 (7 by maintainers)

github_iconTop GitHub Comments

1reaction
rsoklcommented, Feb 22, 2018

Thank you! I’m planning to make my liveplot (which is very young, but really useful) project support visdom , instead of solely matplotlib.

1reaction
JackUrbcommented, Feb 22, 2018

Alright putting the change in now, but it could take a little bit to push through our pipeline. Replace the assert with:

    startup_sec = 1
    while not viz.check_connection() and startup_sec > 0:
        time.sleep(0.1)
        startup_sec -= 0.1
    assert viz.check_connection(), 'No connection could be formed quickly'

if you want to run the demo with no issues right now (that’s the extent of the change)

Read more comments on GitHub >

github_iconTop Results From Across the Web

How to run the server from source-build (documentation out of ...
Following the instructions for installing from source, and the usage documentation. pip install -e . python -m visdom.server No module named ...
Read more >
4. Documenting your code and hosting the documentation ...
In this chapter, I first discuss the basics of how to write good documentation and then I discuss various software tools that make...
Read more >
Frequently Asked Questions - Read the Docs
First, you should check out the Builds tab of your project. That records all of the build attempts that RTD has made to...
Read more >
Python auto-generated documentation — 3 tools that will help ...
Creating an up-to-date, meaningful, easily usable documentation is not trivial. This article shortly reviews 3 tools that could help ...
Read more >
Documentation Project - Apache HTTP Server
I know how to use svn and want to checkout the latest manual. I'd like to build the manual from local source. I'd...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found