forked from seketeam/EvoCodeBench
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup_env.sh
More file actions
224 lines (173 loc) · 6.01 KB
/
setup_env.sh
File metadata and controls
224 lines (173 loc) · 6.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
Root=/home/user/EvoCodeBench
Data_Path=$Root/data.jsonl
Source_Code_Root=$Root/Source_Code
# Setup the execution environment for contrastors
cd $Root/Source_Code/contrastors
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
deactivate
# Setup the execution environment for EasyVolcap
cd $Root/Source_Code/EasyVolcap
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
deactivate
# Setup the execution environment for microagents
cd $Root/Source_Code/microagents
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
deactivate
# Setup the execution environment for XAgent
cd $Root/Source_Code/XAgent
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
deactivate
# Setup the execution environment for litdata
cd $Root/Source_Code/litdata
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
pip install -r requirements/test.txt
pip install -r requirements/extras.txt
pip install -r requirements/docs.txt
deactivate
# Setup the execution environment for gaussian-splatting-lightning
cd $Root/Source_Code/gaussian-splatting-lightning
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
deactivate
# Setup the execution environment for open-iris
cd $Root/Source_Code/open-iris
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements/base.txt
# pip install -r requirements/orb.txt
pip install -r requirements/dev.txt
pip install -r requirements/server.txt
deactivate
# Setup the execution environment for tanuki_py
cd $Root/Source_Code/tanuki_py
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
deactivate
# Setup the execution environment for skfolio
cd $Root/Source_Code/skfolio
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
deactivate
# Setup the execution environment for UniRef
cd $Root/Source_Code/UniRef
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
deactivate
# Setup the execution environment for scepter
cd $Root/Source_Code/scepter
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
pip install -r requirements/framework.txt
pip install -r requirements/tests.txt
pip install -r requirements/recommended.txt
pip install -r requirements/scepter_studio.txt
deactivate
# Setup the execution environment for microsearch
cd $Root/Source_Code/microsearch
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
deactivate
# Setup the execution environment for UHGEval
cd $Root/Source_Code/UHGEval
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
deactivate
# Setup the execution environment for Test-Agent
cd $Root/Source_Code/Test-Agent
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
deactivate
# Setup the execution environment for Generalizable-BEV
cd $Root/Source_Code/Generalizable-BEV
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements/readthedocs.txt
pip install -r requirements/build.txt
pip install -r requirements/tests.txt
pip install -r requirements/docs.txt
pip install -r requirements/optional.txt
pip install -r requirements/runtime.txt
pip install -r requirements/mminstall.txt
deactivate
# Setup the execution environment for ollama-python
cd $Root/Source_Code/ollama-python
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
deactivate
# Setup the execution environment for Python-Type-Challenges
cd $Root/Source_Code/Python-Type-Challenges
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
deactivate
# Setup the execution environment for stable-fast
cd $Root/Source_Code/stable-fast
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
deactivate
# Setup the execution environment for AutoRAG
cd $Root/Source_Code/AutoRAG
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
deactivate
# Setup the execution environment for stable-diffusion-webui-forge
cd $Root/Source_Code/stable-diffusion-webui-forge
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
deactivate
# Setup the execution environment for openlogprobs
cd $Root/Source_Code/openlogprobs
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
deactivate
# Setup the execution environment for camp_zipnerf
cd $Root/Source_Code/camp_zipnerf
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
deactivate
# Setup the execution environment for nlm-ingestor
cd $Root/Source_Code/nlm-ingestor
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
deactivate
# Setup the execution environment for searcharray
cd $Root/Source_Code/searcharray
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
deactivate
# Setup the execution environment for deluder
cd $Root/Source_Code/deluder
python -m venv myenv && source myenv/bin/activate
pip install pytest pytest-runner
pip install -r requirements.txt
deactivate
cd $Root
python update_test_path.py \
--data_path $Data_Path \
--source_code_root $Source_Code_Root