Package Details: python-visdom 0.2.4-5

Git Clone URL: https://aur.archlinux.org/python-visdom.git (read-only, click to copy)
Package Base: python-visdom
Description: A flexible tool for creating, organizing, and sharing visualizations of live, rich data. Supports Torch and Numpy.
Upstream URL: https://github.com/facebookresearch/visdom
Licenses: Apache-2.0
Submitter: hottea
Maintainer: hottea (lilac)
Last Packager: lilac
Votes: 0
Popularity: 0.000000
First Submitted: 2019-05-03 02:14 (UTC)
Last Updated: 2024-03-30 06:37 (UTC)

Latest Comments

hottea commented on 2020-04-09 04:43 (UTC)

@elanglois You could report this to upstream, not here.

elanglois commented on 2020-04-08 18:35 (UTC)

The visdom server fails for me (when run without root permissions) because it tries to download and install fonts the first time it is run.

PermissionError: [Errno 13] Permission denied: '/usr/lib/python3.8/site-packages/visdom/static/fonts'

I was able to fix this by adding

prepare() {
  cd "${_name}-${pkgver}"
  PYTHONPATH="$(pwd)/py" python -c 'import visdom.server; visdom.server.download_scripts()'
}

so that the fonts are downloaded and installed as part of the package.