Wise-Vision-2 / app.py
raj999's picture
Update app.py
70e6553 verified
raw
history blame
278 Bytes
import subprocess
import sys
def install(package):
subprocess.check_call([sys.executable, "-m", "pip", "install", package])
install('git+https://github.com/PatBall1/detectree2.git')
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)