本文介绍了发生错误...从python笔记本访问Workspace时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在尝试从python 3.6笔记本连接到工作区时,过去几天一直遇到此错误.使用的命令是"ws = Workspace.from_config()",我确保我已拥有工作空间所需的所有访问权限.
Am facing this error for past few days, while trying to connect to workspace from python 3.6 notebook. Command used is "ws = Workspace.from_config()", i made sure i've all the required access rights for the workspace.
推荐答案
您可以改用它吗?
ws = Worksapce.get(...)
ws = Worksapce.get(...)
然后您可以编写配置文件(以便稍后加载)
you can then write the config file (so you can load it later)
ws.write_config()
ws.write_config()
这篇关于发生错误...从python笔记本访问Workspace时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!