Closed Wenzel closed 6 years ago
Hi,
I was trying to use the latest r2pipe Python bindings on radare/radare2 Docker container, and using the r2.cmdj command always results in this output:
r2pipe
radare/radare2
r2.cmdj
r2pipe.cmdj.Error: Expecting value: line 1 column 1 (char 0)
Dockerfile to reproduce the bug
FROM radare/radare2 USER root RUN apt-get update && apt-get install -y python3-pip RUN pip3 install r2pipe USER r2 CMD ["python3", "-c", "import r2pipe; r2 = r2pipe.open('/bin/ls'); r2.cmdj('pd 10')"]
My test script
import r2pipe r2 = r2pipe.open('/bin/ls') r2.cmdj('pd 10')
Thanks !
my bad.
Hi,
I was trying to use the latest
r2pipe
Python bindings onradare/radare2
Docker container, and using ther2.cmdj
command always results in this output:Dockerfile to reproduce the bug
My test script
Thanks !