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 Dec 3, 2019. It is now read-only.
I am utilizing the approach darindf recommended for conda:
sudo find ~/miniconda3 -iname python-*.pc # (find the pkgconfig directories)
export PKG_CONFIG_PATH=/home/brett/miniconda3/envs/far5/lib/pkgconfig/ # (far5 is the env I am using)
...build the normal way
(I am using the same conda environment to find the pkgconfig as the python program I am trying to trace), but I am getting
sudo ./pyflame -d --threads -p 15657
terminate called after throwing an instance of 'pyflame::PtraceException'
what(): Failed to PTRACE_PEEKDATA (pid 15657, addr 0x55a8639c3508): Input/output error
For reference, i am trying to do this with a very minimal example:
import time
i = 0
while True:
time.sleep(3)
print('running', i)
i += 1
The text was updated successfully, but these errors were encountered:
I am hitting trouble with miniconda on Python 3.6.7 and pyflame
I am utilizing the approach darindf recommended for conda:
(I am using the same conda environment to find the pkgconfig as the python program I am trying to trace), but I am getting
For reference, i am trying to do this with a very minimal example:
The text was updated successfully, but these errors were encountered: