Timothy
Timothy
@ralhei If you want `pip uninstall` to work you can change `setup.py` from ``` scripts=['bin/q'], ``` To ``` entry_points={ "console_scripts": [ "q=bin.q:run_standalone" ] } ``` See [the "Automatic script creation"...
The graph was produced with the following command: ``` sudo duc index ~ duc graph ~ ```
I'm on Yosemite 10.10.5 (14F27). I tried configuring 2 ways ``` ./configure --enable-x11=no # and ./configure --disable-opengl --disable-x11 ``` Both game me the same result after building. Thanks for the...
Hmm - may have found the issue. `sudo dtruss -f -t open duc graph ~` gives the following: ``` 71828/0x38fa13: open("/usr/lib/dtrace/libdtrace_dyld.dylib\0", 0x0, 0x0) = 3 0 71828/0x38fa13: open("/usr/lib/dgagent/libpreload.dylib\0", 0x0, 0x0)...
Correction: those are just configuration files. But they are missing.
@zevv Thanks for following up. I did try that command a few months ago but forgot to add the results. I tested with `--enable-opengl --disable-x11` again today but I'm still...
I just tried switching over to 1.4.0 and using your recommended flags for configure, and now I'm seeing different types of errors. Logfile: [runtest.log.txt](https://github.com/zevv/duc/files/161666/runtest.log.txt) And here's the current version of...
Alright, cool. I definitely appreciate your persistence!
I've only tried the current HEAD of master, but I'm also getting compile errors on CentOS 7 (using the [bento/centos-7.1](https://atlas.hashicorp.com/bento/boxes/centos-7.1) vagrant box). ``` [vagrant@localhost wrk2]$ git log | head -n1...
@giltene It's compiling for me now - thanks! However, running `make` is kind of chatty. I'm not sure if that means setting another compiler flag could help. Here's what I'm...