You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by wk...@apache.org on 2019/03/27 00:21:18 UTC

[incubator-mxnet] branch master updated: Fix script retrieval (#14519)

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

wkcn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/master by this push:
     new c4cd49c  Fix script retrieval (#14519)
c4cd49c is described below

commit c4cd49cf20bfe59ee7fad9fa15e2e6e9dd2299ca
Author: Vandana Kannan <va...@users.noreply.github.com>
AuthorDate: Tue Mar 26 17:20:59 2019 -0700

    Fix script retrieval (#14519)
    
    * Correct script wget. Without this change, wget was retrieving html.
    
    * Dont use CI scripts
---
 docs/tutorials/java/mxnet_java_on_intellij.md | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/docs/tutorials/java/mxnet_java_on_intellij.md b/docs/tutorials/java/mxnet_java_on_intellij.md
index d95aabd..e2f5a6c 100644
--- a/docs/tutorials/java/mxnet_java_on_intellij.md
+++ b/docs/tutorials/java/mxnet_java_on_intellij.md
@@ -43,16 +43,10 @@ brew install opencv
 
 Run the following commands to install the prerequisites on Ubuntu.
 
-```bash
-wget https://github.com/apache/incubator-mxnet/blob/master/ci/docker/install/ubuntu_core.sh
-sudo ./ubuntu_core.sh
-wget https://github.com/apache/incubator-mxnet/blob/master/ci/docker/install/ubuntu_scala.sh
-sudo ./ubuntu_scala.sh
+```
+sudo apt-get install openjdk-8-java maven
 ```
 
-Note : You might need to run `chmod u+x ubuntu_core.sh` and `chmod u+x ubuntu_scala` before running the scripts.
-
-The `ubuntu_scala.sh` installs the common dependencies required for both MXNet Scala and MXNet Java packages.
 
 ## Set Up Your Project