Commit
·
5d99706
1
Parent(s):
661b7ae
sgte
Browse files
app.py
CHANGED
@@ -3,14 +3,14 @@ import subprocess
|
|
3 |
# Run the pip install command for pyenchant
|
4 |
subprocess.run(["pip", "install", "pyenchant"], check=True)
|
5 |
|
6 |
-
# Run the first command
|
7 |
-
subprocess.run(["apt", "install", "enchant", "--fix-missing", "-y"], check=True)
|
8 |
|
9 |
-
# Run the second command
|
10 |
-
subprocess.run(["apt", "install", "-qq", "enchant", "-y"], check=True)
|
11 |
|
12 |
-
# Run the pip install command for pyenchant
|
13 |
-
subprocess.run(["pip", "install", "pyenchant"], check=True)
|
14 |
|
15 |
import streamlit as st
|
16 |
import pandas as pd
|
|
|
3 |
# Run the pip install command for pyenchant
|
4 |
subprocess.run(["pip", "install", "pyenchant"], check=True)
|
5 |
|
6 |
+
# # Run the first command
|
7 |
+
# subprocess.run(["apt", "install", "enchant", "--fix-missing", "-y"], check=True)
|
8 |
|
9 |
+
# # Run the second command
|
10 |
+
# subprocess.run(["apt", "install", "-qq", "enchant", "-y"], check=True)
|
11 |
|
12 |
+
# # Run the pip install command for pyenchant
|
13 |
+
# subprocess.run(["pip", "install", "pyenchant"], check=True)
|
14 |
|
15 |
import streamlit as st
|
16 |
import pandas as pd
|