在模块中找到了该命令,但是无法加载该模块

时间:2019-02-01 06:35:17

标签: linux powershell azure-cosmosdb

我正在尝试使用PowerShell在cosmosdb中创建文档。该命令正在Linux的PSCore上运行,执行策略为the_i = grep( "pos_", colnames(data_1), value = T) the_e = grep( "_e", colnames(data_1), value = T) for( is_ in the_i ){ ## list of plots tmp_gglist = lapply( the_e, function( es_ ){ y <- max(data_1[, is_ ]) x <- min(data_1[, es_ ]) ggscatter(data_1, x = es_, y = is_, add = "reg.line", add.params = list(color = "blue", fill = "lightgray"), conf.int = TRUE) + stat_cor(method = "pearson",label.x = x, label.y = y*1.1) }) ## exporting merged list of plots png( paste("Out_" , is_ , ".png", sep = ""), width = 9, height = 8, units = 'in', res = 100) q <- cowplot::plot_grid(plotlist = tmp_gglist ) print(q) dev.off() } 并且不可更改。

我遇到此错误:

  

New-CosmosDbDocument:在以下位置找到了“ New-CosmosDbDocument”命令   模块“ CosmosDB”,但无法加载该模块。欲了解更多   信息,运行“导入模块CosmosDB”

代码如下:

grep(".png", dir() , value = T)

# [1] "Out_pos_1.png" "Out_pos_2.png" "Out_pos_3.png" "Out_pos_4.png"
# [5] "Out_pos_5.png" "Out_pos_6.png" "Out_pos_7.png"

1 个答案:

答案 0 :(得分:0)

请问您是否在Powershell Core中安装了CosmosDB模块? 如果没有,请使用以下命令进行安装。

安装模块-名称CosmosDB

如果已经安装它,请运行以下命令以检查该cmdlet是否可用

获取帮助New-CosmosDbDocument

如果您没有上述cmdlet,请更新您的Powershell核心模块

更新模块CosmosDb