Package Details: python-streamlit 1.33.0-1

Git Clone URL: https://aur.archlinux.org/python-streamlit.git (read-only, click to copy)
Package Base: python-streamlit
Description: The fastest way to build data apps in Python
Upstream URL: https://streamlit.io
Licenses: Apache
Submitter: mhsekhavat
Maintainer: sgar
Last Packager: sgar
Votes: 2
Popularity: 0.000000
First Submitted: 2019-10-19 15:39 (UTC)
Last Updated: 2024-04-08 10:42 (UTC)

Latest Comments

hottea commented on 2022-09-09 04:02 (UTC) (edited on 2022-09-09 04:04 (UTC) by hottea)

@xeruf It seems this pkg depends on streamlit-drawable-canvas. However, I'm not using this pkg anymore.

xeruf commented on 2022-09-09 02:19 (UTC)

Missing dependency, see https://github.com/bes-dev/stable_diffusion.openvino/issues/38

xeruf commented on 2022-09-09 02:16 (UTC)

Web interface does not work :/

❯ streamlit run demo_web.py
ModuleNotFoundError: No module named 'streamlit_drawable_canvas'
Traceback:

File "/usr/lib/python3.10/site-packages/streamlit/runtime/scriptrunner/script_runner.py", line 556, in _run_script
    exec(code, module.__dict__)
File "/opt/stable-diffusion-intel/demo_web.py", line 6, in <module>
    from streamlit_drawable_canvas import st_canvas

hottea commented on 2021-12-19 01:49 (UTC)

Hi, this pkg is out of date for a long time, any chance to update it? See also PKGBUILD.

otaj commented on 2020-10-01 12:55 (UTC)

Hi, the package is again out of date, this gist is for building the current version at the time of writing (0.67.1)

mhsekhavat commented on 2020-04-24 07:56 (UTC)

Thank you, @timhilt. I have updated it to 0.58.0

timhilt commented on 2020-03-14 07:18 (UTC)

Hi there, i just flagged the package as outdated. However, i managed to install the package and edited the PKGBUILD accordingly:

# Maintainer: Mohammad Hossein Sekhavat <sekhavat17@gmail.com>

pkgbase='python-streamlit'
pkgname=('python-streamlit')
_module='streamlit'
pkgver='0.48.1'
pkgrel=1
pkgdesc="Streamlit: Frontend library for machine learning engineers"
url="https://streamlit.io"
depends=(
    'python'
    'python-altair'
    'python-astor'
    'python-base58'
    'python-blinker'
    'python-boto3'
    'python-botocore'
    'python-click>=7.0'
    'python-enum-compat'
    'python-future'
    'python-pillow>5.1.0'
    'python-protobuf>=3.6.0'
    'python-requests'
    'python-toml'
    'python-tornado5'
    'python-tzlocal'
    'python-validators'
    'python-watchdog'
    'python-pandas'
    'python-numpy'
)
makedepends=('python-pip')
license=('unknown')
arch=('any')
source=("https://files.pythonhosted.org/packages/82/e1/44f61329d305ad333bac23d4eda4d7bba037cf1802717c22894a04954163/streamlit-0.56.0-py2.py3-none-any.whl")
sha256sums=('d4ee0be9781776e97e53d16da968bc0131906a0140296de98a99c707aaa9b0dc')

package() {
    cd "${srcdir}"
    PIP_CONFIG_FILE=/dev/null pip install --isolated --root="$pkgdir" --ignore-installed --no-deps *.whl
}