locorene1000 commited on
Commit
35484e2
·
1 Parent(s): 859dd88

Descripción de los cambios que realizaste

Browse files
install.sh CHANGED
@@ -1,11 +1,10 @@
1
  #!/bin/bash
2
-
3
- # Instalar transformers sin dependencias
4
- pip install transformers --no-deps
5
-
6
- # Instalar otras dependencias
7
- pip install torch==2.0.1
8
- pip install huggingface_hub==0.16.4
9
  pip install gradio==3.24.1
10
  pip install numpy==1.23.0
11
- pip install regex
 
 
1
  #!/bin/bash
2
+ python3 -m venv myenv
3
+ source myenv/bin/activate
4
+ pip install transformers==4.42.4
5
+ pip install torch==2.3.1
6
+ pip install huggingface_hub==0.23.4
 
 
7
  pip install gradio==3.24.1
8
  pip install numpy==1.23.0
9
+ pip install regex
10
+ pip install safetensors
myenv/bin/python ADDED
@@ -0,0 +1 @@
 
 
1
+ python3
myenv/bin/python3 ADDED
@@ -0,0 +1 @@
 
 
1
+ /usr/bin/python3
myenv/bin/python3.10 ADDED
@@ -0,0 +1 @@
 
 
1
+ python3
myenv/lib64 ADDED
@@ -0,0 +1 @@
 
 
1
+ lib
myenv/pyvenv.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ home = /usr/bin
2
+ include-system-site-packages = false
3
+ version = 3.10.12