内容简介:先通过如上得到了其所在路径是给到其执行权限:
先通过 which python
获得 python
指令所在路径:
$ which python /usr/bin/python
如上得到了其所在路径是 /usr/bin/python
,因此我创建了一个文件 ~/bin/python-sudo.sh
,然后填入:
#!/bin/bash sudo /usr/bin/python "$@"
给到其执行权限:
chmod +x ~/bin/python-sudo.sh
第二步 让当前用户执行 sudo python
不需要输入密码
执行:
sudo visudo -f /etc/sudoers.d/python
此时会自动创建 /etc/sudoers.d/python
,并打开,我们在其中填写:
jacks ALL = (root) NOPASSWD: /usr/bin/python
上文将 jacks
替换为你的用户名,保存退出即可。
第三步 在PyCharm项目中配置使用 ~/bin/python-sudo.sh
我们打开 Settings
,在 Project Interpreter
中找到设置的图标,然后在下拉中点击 Add..
,选择 Existing environment
,然后配置为我们刚刚创建的 ~/bin/python-sudo.sh
文件。
接着在当前项目的 Project Intercepter
选用,刚刚添加的这个即可,如:
以上所述就是小编给大家介绍的《PyCharm Python运行权限问题》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- Android运行时权限处理
- dotnet 判断程序当前使用管理员运行降低权使用普通权限运行
- 在 Windows 系统上降低 UAC 权限运行程序(从管理员权限降权到普通用户权限)
- 在 Windows 系统上降低 UAC 权限运行程序(从管理员权限降权到普通用户权限)
- 让wireshark以非root权限运行背后 linux Capabilities(简介)
- InfluxDB因修改默认数据目录导致服务无法正常运行的问题(权限问题)
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Mastering JavaServer Faces
Bill Dudney、Jonathan Lehr、Bill Willis、LeRoy Mattingly / Wiley / 2004-6-7 / USD 40.00
Harness the power of JavaServer Faces to create your own server-side user interfaces for the Web This innovative book arms you with the tools to utilize JavaServer Faces (JSF), a new standard that wi......一起来看看 《Mastering JavaServer Faces》 这本书的介绍吧!