You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 4, 2020. It is now read-only.
from Python 3.5 IDLE, it gives me error message like:
Traceback (most recent call last):
File "<pyshell#0>", line 1, in
from pwn import *
File "/home/dejanosky/Downloads/python3-pwntools/pwn/init.py", line 2, in
from .toplevel import *
File "/home/dejanosky/Downloads/python3-pwntools/pwn/toplevel.py", line 19, in
import pwnlib
File "/home/dejanosky/Downloads/python3-pwntools/pwnlib/init.py", line 37, in
importlib.import_module('.%s' % module, 'pwnlib')
File "/usr/lib/python3.5/importlib/init.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "/home/dejanosky/Downloads/python3-pwntools/pwnlib/args.py", line 7, in
from . import term
File "/home/dejanosky/Downloads/python3-pwntools/pwnlib/term/init.py", line 5, in
from . import readline
File "/home/dejanosky/Downloads/python3-pwntools/pwnlib/term/readline.py", line 3, in
from . import term
File "/home/dejanosky/Downloads/python3-pwntools/pwnlib/term/term.py", line 30, in
fd = sys.stdout.buffer
AttributeError: 'PseudoOutputFile' object has no attribute 'buffer'
(dejanosky is my username).
What should I do? Thx.
The text was updated successfully, but these errors were encountered:
now I get this error: Traceback (most recent call last): File "<pyshell#7>", line 1, in <module> from pwn import * File "/home/dejanosky/Downloads/python3-pwntools/pwn/__init__.py", line 2, in <module> from .toplevel import * File "/home/dejanosky/Downloads/python3-pwntools/pwn/toplevel.py", line 19, in <module> import pwnlib File "/home/dejanosky/Downloads/python3-pwntools/pwnlib/__init__.py", line 37, in <module> importlib.import_module('.%s' % module, 'pwnlib') File "/usr/lib/python3.5/importlib/__init__.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "/home/dejanosky/Downloads/python3-pwntools/pwnlib/args.py", line 7, in <module> from . import term File "/home/dejanosky/Downloads/python3-pwntools/pwnlib/term/__init__.py", line 5, in <module> from . import readline File "/home/dejanosky/Downloads/python3-pwntools/pwnlib/term/readline.py", line 4, in <module> from . import text File "/home/dejanosky/Downloads/python3-pwntools/pwnlib/term/text.py", line 125, in <module> sys.modules[__name__] = Module() File "/home/dejanosky/Downloads/python3-pwntools/pwnlib/term/text.py", line 28, in __init__ self.num_colors = termcap.get('colors', default=8) File "/home/dejanosky/Downloads/python3-pwntools/pwnlib/term/termcap.py", line 23, in get s = curses.tigetstr(cap) _curses.error: must call (at least) setupterm() first
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When I run
from Python 3.5 IDLE, it gives me error message like:
(dejanosky is my username).
What should I do? Thx.
The text was updated successfully, but these errors were encountered: