Krister Swenson
Krister Swenson
Could you please describe the actions I need to do to downgrade? I've downgraded my graphviz package but still encounter this problem. dpkg: warning: downgrading graphviz from 2.40.1-5 to 2.38.0-12ubuntu2.1...
Thanks for the hint @bogdanvuk. Could yo please give me more detailed instructions on how to "link against the libraries built in the process"? I did "make install" on the...
@dschult : I just put this into ipython3 (python version 3.6.7) ``` In [1]: from pygraphviz import * In [2]: G=AGraph(strict=False) In [3]: G.add_edge('a','b','first') In [4]: G.add_edge('a','b','second') In [5]: sorted(G.edges(keys=True))...
@bogdanvuk : YES. Thanks very much for the help!
I replaced the TwoPaCo submodule with the code from the pufferfish repo. I then modified added to the CMakeLists.txt from this project: ``` find_package(TBB 2021.4 COMPONENTS tbb tbbmalloc tbbmalloc_proxy )...
I forgot about that option. Thanks.
See https://github.com/xournalpp/xournalpp/issues/3260
Two similar bugs are the following: - https://github.com/pyinstaller/pyinstaller/issues/4200 - https://github.com/mhallsmoore/qstrader/issues/322 One of the solution was to run pyinstaller outside of the virtual environment. This doesn't seem to be an option...
I've been digging into it... it turns out that depend.binddepend.findSystemLibrary() uses ctypes.util.find_library() to find the system libraries, but find_library() is broken in conda: https://github.com/ContinuumIO/anaconda-issues/issues/1716 The bug seems to be open...
Setting DYLD_FALLBACK_LIBRARY_PATH to my `lib/` directory in my conda environment is a viable workaround for this minimal example. I'm not sure how to fix pyinstaller to avoid setting this variable....