Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
# H2O install zip
download.file('http://h2o-release.s3.amazonaws.com/h2o/rel-wright/2/h2o-3.20.0.2.zip', destfile = 'h2o-3.20.0.2.zip')
system('unzip h2o-3.20.0.2.zip', intern = T)

# Change permissionsCreate folder and change permissions
system('hdfs dfs -mkdir -p /user/h2o/', intern = T)
system('hdfs dfs -chown -R root:hadoop /user/h2o/', intern = T)

# R library
system('hdfs dfs -mkdir -p /user/h2o/install_R', intern = T)
system('hdfs dfs -put h2o-3.20.0.2/R/h2o_3.20.0.2.tar.gz /user/h2o/install_R/', intern = T)

# Python library
# Uncomment if you also want to upload python library to hdfs
# system('hdfs dfs -mkdir -p /user/h2o/install_python', intern = T)
# system('hdfs dfs -put h2o-3.20.0.2/python/h2o-3.20.0.2-py2.py3-none-any.whl /user/h2o/install_python/', intern = T)

...