Installing additional R Package on Azure ML

安稳与你 提交于 2019-12-10 20:42:52

问题


I am doing the following steps to install R Hash_2.2.6.zip package on to Azure ML

  1. Upload the .zip file as a dataset
  2. Create a new experiment and Add "Execute R Script" to experiment
  3. Drag and drop .zip file dataset to experiment.
  4. Connect the Dataset in step3 to "Execute R Script" of step2
  5. Run the experiment to install the package

However I am getting this error: zip file src/hash_2.2.6.zip not found

Just so that its very clear, I am following steps mentioned in this article: http://blogs.technet.com/b/saketbi/archive/2014/08/20/microsoft-azure-ml-amp-r-language-extensibility.aspx.

Any help in this regard is greatly appreciated.


回答1:


To install a package this way, you have to create a .zip of a .zip. The outer layer of packaging will get unzipped into the src/ folder when the dataset is passed in to the module, and you'll be able to install the inner package from there.



来源:https://stackoverflow.com/questions/27568624/installing-additional-r-package-on-azure-ml

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!