Pycharm : how-to launch for a standard terminal (to solve an issue with curses)(Pycharm:如何启动标准终端(解决诅咒问题))
问题描述
我遇到了一个奇怪的问题.使用 Pycharm(请不要对这个事实进行攻击),我正在尝试启动一个简短的应用程序,它使用 ncurses
在我的任期内呈现一些东西.
I'm facing a weird problem.
Using Pycharm (please do not troll about this fact), I'm trying to launch a short app that uses ncurses
to render some things on my term.
虽然我可以简单地启动项目而没有任何问题,但从 Pycharm 启动它会引发以下错误:
While I can launch the project in a simple term without any problem, launching it from Pycharm raise the following error :
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/curses/__init__.py", line 33, in initscr
fd=_sys.__stdout__.fileno())
error: setupterm: could not find terminal
Process finished with exit code 0
据我所知,一切都与终端环境变量有关.Pycharm 从它自己的终端实例启动项目(运行或调试),curses 将无法使用它.所以,我想知道如何配置 Pycharm 以在常规终端中启动我的项目.
As far as I can see, all is about terminal environment variables. Pycharm launch the project (Run or Debug) from its own instance of the terminal, and curses will not work with it. So, I am wondering how may I configure Pycharm to launch my project inside a regular terminal.
该项目使用 Python 2.7.Pycharm 在 EAP 版本 129.258 中(不适用于其他版本,包括稳定版)
The project is using Python 2.7. Pycharm is in EAP version 129.258 (doesn't work with other versions, including stables)
感谢您的关注.
K.
推荐答案
我通过将调试器附加到进程来解决了curses调试问题.
I solved the curses debugging problem by attaching the debugger to a process.
- 在终端中启动程序
- Pycharm -> 工具 -> 附加到进程
- 选择我的程序
- 完成
尝试以非 root 身份附加需要额外的 ptrace 访问权限.
Trying to attach as non-root requires additional ptrace access rights.
在这里解释:http://blog.mellenthin.de/archives/2010/10/18/gdb-attach-fails-with-ptrace-operation-not-permitted/#comment-141535
在我的 ubuntu 机器上:回声 0 >/proc/sys/kernel/yama/ptrace_scope
(作为根)
On my ubuntu machine:
echo 0 > /proc/sys/kernel/yama/ptrace_scope
(as root)
分别在/etc/sysctl.d/10-ptrace.conf中设置ptrace_scope为0
respectively set ptrace_scope to 0 in /etc/sysctl.d/10-ptrace.conf
这篇关于Pycharm:如何启动标准终端(解决诅咒问题)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Pycharm:如何启动标准终端(解决诅咒问题)


- 检查具有纬度和经度的地理点是否在 shapefile 中 2022-01-01
- ";find_element_by_name(';name';)";和&QOOT;FIND_ELEMENT(BY NAME,';NAME';)";之间有什么区别? 2022-01-01
- 如何使用PYSPARK从Spark获得批次行 2022-01-01
- CTR 中的 AES 如何用于 Python 和 PyCrypto? 2022-01-01
- 使用 Cython 将 Python 链接到共享库 2022-01-01
- 我如何卸载 PyTorch? 2022-01-01
- 使用公司代理使Python3.x Slack(松弛客户端) 2022-01-01
- YouTube API v3 返回截断的观看记录 2022-01-01
- 我如何透明地重定向一个Python导入? 2022-01-01
- 计算测试数量的Python单元测试 2022-01-01