Debug info
Browse files- components.py +1 -0
components.py
CHANGED
@@ -268,6 +268,7 @@ Extract it. Remove anything after the function definition.""",
|
|
268 |
import sys
|
269 |
|
270 |
for p in eval(packages):
|
|
|
271 |
subprocess.check_call([sys.executable, "-m", "pip", "install", p])
|
272 |
|
273 |
function = function.strip()
|
|
|
268 |
import sys
|
269 |
|
270 |
for p in eval(packages):
|
271 |
+
print(f"Installing {p}")
|
272 |
subprocess.check_call([sys.executable, "-m", "pip", "install", p])
|
273 |
|
274 |
function = function.strip()
|