diff --git a/tljh/conda.py b/tljh/conda.py index dec553b..23894f9 100644 --- a/tljh/conda.py +++ b/tljh/conda.py @@ -61,7 +61,7 @@ def ensure_pip_packages(prefix, packages): abspath = os.path.abspath(prefix) pip_executable = [os.path.join(abspath, 'bin', 'python'), '-m', 'pip'] - subprocess.run(pip_executable + [ + subprocess.check_output(pip_executable + [ 'install', '--no-cache-dir', ] + packages)