This is an automated email from the ASF dual-hosted git repository. lfrolov pushed a commit to branch DATALAB-2091 in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
commit 02f462b532e1a2dcd4b11dd3829d7defbd3e6fa5 Author: leonidfrolov <[email protected]> AuthorDate: Tue Mar 16 14:06:05 2021 +0200 [DATALAB-2091]: fixed matplot version variable usage error --- 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 8905558..c94948b 100644 --- a/infrastructure-provisioning/src/general/lib/os/debian/notebook_lib.py +++ b/infrastructure-provisioning/src/general/lib/os/debian/notebook_lib.py @@ -174,7 +174,7 @@ def ensure_matplot(os_user): datalab.fab.conn.sudo("sudo sed -i~orig -e 's/# deb-src/deb-src/' /etc/apt/sources.list") manage_pkg('update', 'remote', '') manage_pkg('-y build-dep', 'remote', 'python3-matplotlib') - datalab.fab.conn.sudo('pip3 install matplotlib=={} --no-cache-dir'.os.environ['notebook_matplotlib_version']) + datalab.fab.conn.sudo('pip3 install matplotlib=={} --no-cache-dir'.format(os.environ['notebook_matplotlib_version'])) if os.environ['application'] in ('tensor', 'deeplearning'): datalab.fab.conn.sudo('python3.8 -m pip install -U numpy=={} --no-cache-dir'.format(os.environ['notebook_numpy_version'])) datalab.fab.conn.sudo('touch /home/' + os_user + '/.ensure_dir/matplot_ensured') --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
