You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dlab.apache.org by ad...@apache.org on 2019/10/02 13:13:36 UTC

[incubator-dlab] branch DLAB-1040 created (now 091a136)

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

adamsd pushed a change to branch DLAB-1040
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git.


      at 091a136  Fix EMR creation (removed option no-cache-dir for pip update)

This branch includes the following new commits:

     new 091a136  Fix EMR creation (removed option no-cache-dir for pip update)

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@dlab.apache.org
For additional commands, e-mail: commits-help@dlab.apache.org


[incubator-dlab] 01/01: Fix EMR creation (removed option no-cache-dir for pip update)

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

adamsd pushed a commit to branch DLAB-1040
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git

commit 091a136c1c46d12395618d3b7fb75cfce54dc562
Author: AdamsDisturber <ad...@gmail.com>
AuthorDate: Wed Oct 2 16:13:26 2019 +0300

    Fix EMR creation (removed option no-cache-dir for pip update)
---
 infrastructure-provisioning/src/general/lib/aws/actions_lib.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/infrastructure-provisioning/src/general/lib/aws/actions_lib.py b/infrastructure-provisioning/src/general/lib/aws/actions_lib.py
index 249fea3..9fb4e3c 100644
--- a/infrastructure-provisioning/src/general/lib/aws/actions_lib.py
+++ b/infrastructure-provisioning/src/general/lib/aws/actions_lib.py
@@ -1529,7 +1529,7 @@ def installing_python(region, bucket, user_name, cluster_name, application='', p
                 local('sudo rm -rf /opt/python/python{}/'.format(python_version))
                 sys.exit(1)
         else:
-            local(venv_command + ' && sudo -i ' + pip_command + ' install -U pip==9.0.3 --no-cache-dir')
+            local(venv_command + ' && sudo -i ' + pip_command + ' install -U pip==9.0.3')
             local(venv_command + ' && sudo -i ' + pip_command + ' install pyzmq==17.0.0')
             local(venv_command + ' && sudo -i ' + pip_command + ' install ipython ipykernel --no-cache-dir')
             local(venv_command + ' && sudo -i ' + pip_command + ' install NumPy=={}'.format(numpy_version))


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