Spaces:
Runtime error
Runtime error
Update text_requirement.py
Browse files- text_requirement.py +22 -1
text_requirement.py
CHANGED
@@ -1 +1,22 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
# Upgrade necessary packages using Python 3.10
|
3 |
+
!python3.10 -m pip install --upgrade huggingface-hub==0.25.2 \
|
4 |
+
transformers==4.31.0 \
|
5 |
+
torch==2.5.0 \
|
6 |
+
nltk==3.6.3 \
|
7 |
+
beautifulsoup4==4.11.1 \
|
8 |
+
feedparser==6.0.8 \
|
9 |
+
pandas==2.2.2 \
|
10 |
+
numpy==1.24.4 \
|
11 |
+
gradio==5.0.2 \
|
12 |
+
ipdb==0.13.9 \
|
13 |
+
flask==2.0.3 \
|
14 |
+
werkzeug==2.0.3 \
|
15 |
+
emoji==2.2.0 \
|
16 |
+
selenium==4.25.0 \
|
17 |
+
webdriver-manager==3.8.4 \
|
18 |
+
requests==2.32.3 \
|
19 |
+
textblob==0.17.1 \
|
20 |
+
pytest==7.4.2 \
|
21 |
+
scikit-learn==1.3.1 \
|
22 |
+
datasets==2.12.0 --prefer-binary --no-cache-dir
|