You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by GitBox <gi...@apache.org> on 2022/04/11 10:12:43 UTC

[GitHub] [tvm] pfk-beta commented on a diff in pull request #10222: use ubuntu18 in docker android demo

pfk-beta commented on code in PR #10222:
URL: https://github.com/apache/tvm/pull/10222#discussion_r847164832


##########
docker/install/ubuntu_install_python.sh:
##########
@@ -20,21 +20,17 @@ set -e
 set -u
 set -o pipefail
 
-# install python and pip, don't modify this, modify install_python_package.sh
-apt-get update
-apt-get install -y python-dev
-
-# python 3.6
+# python 3.7
 apt-get install -y software-properties-common
 
 add-apt-repository -y ppa:deadsnakes/ppa
 apt-get update
-apt-get install -y python-pip python-dev python3.6 python3.6-dev
+apt-get install -y python3.7 python3.7-dev
 
-rm -f /usr/bin/python3 && ln -s /usr/bin/python3.6 /usr/bin/python3
+rm -f /usr/bin/python3 && ln -s /usr/bin/python3.7 /usr/bin/python3
 
 # Install pip
-cd /tmp && wget -q https://bootstrap.pypa.io/get-pip.py && python3.6 get-pip.py
+cd /tmp && wget -q https://bootstrap.pypa.io/get-pip.py && python3.7 get-pip.py
 

Review Comment:
   Sorry, I made little mess, so I reverted some code. I've already pushed changes. I reverted most of my code, and I have changed code, to use ubuntu1804_install_python



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org