Spaces:
Sleeping
Sleeping
Adrit Rao
commited on
Commit
·
ba8b4cd
1
Parent(s):
c4a862b
Add application file v2
Browse files
app.py
CHANGED
@@ -7,14 +7,7 @@ import subprocess
|
|
7 |
|
8 |
# Define the list of commands, including "echo" to simulate Enter keypress
|
9 |
commands = [
|
10 |
-
"wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh",
|
11 |
-
"bash miniconda.sh -b -p /path/to/miniconda",
|
12 |
-
"echo", # Simulate pressing Enter
|
13 |
-
"conda init",
|
14 |
-
"echo", # Simulate pressing Enter
|
15 |
"cd Comp2Comp-main",
|
16 |
-
"conda create -n c2c_env python=3.8 -y", # Automatically answer yes with -y
|
17 |
-
"conda activate c2c_env",
|
18 |
"pip install -e ."
|
19 |
]
|
20 |
|
|
|
7 |
|
8 |
# Define the list of commands, including "echo" to simulate Enter keypress
|
9 |
commands = [
|
|
|
|
|
|
|
|
|
|
|
10 |
"cd Comp2Comp-main",
|
|
|
|
|
11 |
"pip install -e ."
|
12 |
]
|
13 |
|