f64
commited on
Commit
·
84fa5b9
1
Parent(s):
31d9ce8
- .gitignore +0 -1
- .vscode/launch.json +17 -0
- requirements.txt +10 -3
.gitignore
CHANGED
|
@@ -1,6 +1,5 @@
|
|
| 1 |
__pycache__
|
| 2 |
.venv/*
|
| 3 |
-
.vscode/*
|
| 4 |
.temp/*
|
| 5 |
.streamlit/secrets.toml
|
| 6 |
.gspread/*
|
|
|
|
| 1 |
__pycache__
|
| 2 |
.venv/*
|
|
|
|
| 3 |
.temp/*
|
| 4 |
.streamlit/secrets.toml
|
| 5 |
.gspread/*
|
.vscode/launch.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"version": "0.2.0",
|
| 3 |
+
"configurations": [
|
| 4 |
+
{
|
| 5 |
+
"name": "Python: Streamlit 1.39.0",
|
| 6 |
+
"type": "debugpy",
|
| 7 |
+
"request": "launch",
|
| 8 |
+
"module": "streamlit",
|
| 9 |
+
"args": [
|
| 10 |
+
"run",
|
| 11 |
+
"CTAPT.py",
|
| 12 |
+
"--server.port",
|
| 13 |
+
"2000"
|
| 14 |
+
]
|
| 15 |
+
}
|
| 16 |
+
]
|
| 17 |
+
}
|
requirements.txt
CHANGED
|
@@ -1,8 +1,15 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
huggingface_hub
|
| 3 |
scikit-learn
|
| 4 |
plotly
|
| 5 |
-
pandas
|
| 6 |
-
numpy
|
| 7 |
psutil
|
| 8 |
faker
|
|
|
|
| 1 |
+
# .venv\Scripts\activate
|
| 2 |
+
# .venv\Scripts\python.exe -m pip install --upgrade pip
|
| 3 |
+
# pip install -r requirements.txt
|
| 4 |
+
# pip install -r requirements.txt --upgrade
|
| 5 |
+
# pip install -r requirements.txt --upgrade --force-reinstall
|
| 6 |
+
|
| 7 |
+
streamlit # https://libraries.io/pypi/streamlit/ # HAS pandas numpy
|
| 8 |
+
#pandas
|
| 9 |
+
#numpy
|
| 10 |
+
ipywidgets # https://libraries.io/pypi/ipywidgets/ # HAS ipykernel
|
| 11 |
huggingface_hub
|
| 12 |
scikit-learn
|
| 13 |
plotly
|
|
|
|
|
|
|
| 14 |
psutil
|
| 15 |
faker
|