Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
|
@@ -10,7 +10,7 @@ task = st.text_input("Enter the task you are working on (e.g., data analysis, ma
|
|
| 10 |
python_version = st.selectbox("Select your Python version:", options=["3.7", "3.8", "3.9", "3.10", "3.11","3.12"], index=3)
|
| 11 |
|
| 12 |
# File uploader widget
|
| 13 |
-
with open('libraries.txt','r') as f:
|
| 14 |
libraries = f.read()
|
| 15 |
|
| 16 |
if st.button("Generate pip command"):
|
|
|
|
| 10 |
python_version = st.selectbox("Select your Python version:", options=["3.7", "3.8", "3.9", "3.10", "3.11","3.12"], index=3)
|
| 11 |
|
| 12 |
# File uploader widget
|
| 13 |
+
with open('/src/libraries.txt','r') as f:
|
| 14 |
libraries = f.read()
|
| 15 |
|
| 16 |
if st.button("Generate pip command"):
|