File size: 834 Bytes
32b5cd7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
def show():
import streamlit as st
st.title("Download")
st.write("You can install this program with")
st.code(
"pip install git+https://github.com... #PLACEHOLDER THIS METHOD OF INSTALLATION IS NOT READY YOU NEED TO DOWNLOAD IT MANUALLY FROM THE GITHUB AND ALSO PIP INSTALL ALL OF THE IMPORTS" # noqa: E501
)
st.write("")
st.write("or use the AC github")
st.link_button(
"AC github",
"https://github.com/AccelerationConsortium/ac-training-lab/tree/main/src%2Fac_training_lab%2Fopenflexure", # noqa: E501
)
st.write("")
st.write(
"You also need to install the Openflexure Stitching library if you want to stitch anything" # noqa: E501
)
st.link_button(
"Openflexure Stitching", "https://gitlab.com/openflexure/openflexure-stitching"
)
|