栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

在jupyter笔记本的单元格内使用sudo

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

在jupyter笔记本的单元格内使用sudo

更新: 我检查了所有方法,所有方法都有效。


1:

请求密码,

getpassmodule
该密码实际上会隐藏用户的输入,然后在python中运行sudo命令。

 import getpass import os password = getpass.getpass() command = "sudo -S apt-get update" #can be any command but don't forget -S as it enables input from stdin os.system('echo %s | %s' % (password, command))

2:

 import getpass import os password = getpass.getpass() command = "sudo -S apt-get update" # can be any command but don't forget -S as it enables input from stdin os.popen(command, 'w').write(password+'n') # newline char is important otherwise prompt will wait for you to manually perform newline

上述方法的注意事项:

您输入密码的字段可能不会出现在ipython笔记本中。它出现在Mac的终端窗口中,我想它会出现在PC的命令外壳中。甚至结果详细信息也将出现在终端中。

3:

您可以将密码存储在

mypasswordfile
文件中,只需输入cell即可:

!sudo -S apt-get install blah < /pathto/mypasswordfile # again -S isimportant here

如果我想在jupyter notebook本身中查看命令的输出,我会更喜欢这种方法。



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/390780.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号