You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datalab.apache.org by lf...@apache.org on 2022/03/24 16:37:24 UTC

[incubator-datalab] branch DATALAB-2668 created (now 19a6bff)

This is an automated email from the ASF dual-hosted git repository.

lfrolov pushed a change to branch DATALAB-2668
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git.


      at 19a6bff  [DATALAB-2668]: fixed py3 path in deeplearning kernel config

This branch includes the following new commits:

     new 19a6bff  [DATALAB-2668]: fixed py3 path in deeplearning kernel config

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datalab.apache.org
For additional commands, e-mail: commits-help@datalab.apache.org


[incubator-datalab] 01/01: [DATALAB-2668]: fixed py3 path in deeplearning kernel config

Posted by lf...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lfrolov pushed a commit to branch DATALAB-2668
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git

commit 19a6bff62529d178e1c4594df2118e98be2af9b3
Author: leonidfrolov <fr...@gmail.com>
AuthorDate: Thu Mar 24 18:37:10 2022 +0200

    [DATALAB-2668]: fixed py3 path in deeplearning kernel config
---
 .../src/deeplearning/scripts/configure_deep_learning_node.py            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/infrastructure-provisioning/src/deeplearning/scripts/configure_deep_learning_node.py b/infrastructure-provisioning/src/deeplearning/scripts/configure_deep_learning_node.py
index 87f098f..ceed46b 100644
--- a/infrastructure-provisioning/src/deeplearning/scripts/configure_deep_learning_node.py
+++ b/infrastructure-provisioning/src/deeplearning/scripts/configure_deep_learning_node.py
@@ -66,7 +66,7 @@ cudnn_file_name = os.environ['notebook_cudnn_file_name']
 if os.environ['conf_cloud_provider'] == 'azure':
     os.environ['notebook_python_venv_version'] = '3.7.12'
 python_venv_version = os.environ['notebook_python_venv_version']
-python_venv_path = '/opt/python/python{}/'.format(python_venv_version)
+python_venv_path = '/opt/python/python{0}/bin/python{1}'.format(python_venv_version, python_venv_version[:3])
 
 if args.region == 'cn-north-1':
     spark_link = "http://mirrors.hust.edu.cn/apache/spark/spark-" + spark_version + "/spark-" + spark_version + \

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datalab.apache.org
For additional commands, e-mail: commits-help@datalab.apache.org