This is an automated email from the ASF dual-hosted git repository. lfrolov pushed a commit to branch DATALAB-2698 in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
commit 57097544fc6fd617331a592f8c17ad6c7631d400 Author: leonidfrolov <[email protected]> AuthorDate: Mon Feb 14 18:43:23 2022 +0200 [DATALAB-2698]: fixed function name --- infrastructure-provisioning/src/general/lib/os/debian/notebook_lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure-provisioning/src/general/lib/os/debian/notebook_lib.py b/infrastructure-provisioning/src/general/lib/os/debian/notebook_lib.py index 4e9bdbd..e015d5b 100644 --- a/infrastructure-provisioning/src/general/lib/os/debian/notebook_lib.py +++ b/infrastructure-provisioning/src/general/lib/os/debian/notebook_lib.py @@ -395,7 +395,7 @@ def install_tensor(os_user, cuda_version, cuda_file_name, sys.exit(1) -def ensure_pytorch(os_user, libs): +def ensure_venv_libs(os_user, libs): if not exists(datalab.fab.conn, '/home/' + os_user + '/.ensure_dir/venv_libs_ensured'): datalab.fab.conn.install_venv_pip_pkg(libs) datalab.fab.conn.sudo('touch /home/' + os_user + '/.ensure_dir/venv_libs_ensured') --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
