Nicolai Oliver Verbaarschot

Results 55 comments of Nicolai Oliver Verbaarschot

Even when I create a virtualenv with the nixpkg `python312` the binaries are symlinks. How can I create a venv that actually contains the binaries? Or is there a way...

Thank you, just came across this myself. The patching seems to work now but I still run into import errors with libstdc++.so: ``` ❯ fix-python --venv .venv Automatically adding "file"...

Python is being used in a bash script and it is installing packages. I will look closer at the script now. It has worked in the past with fix-python. In...

Oh I see what might be happening, the scripts is using python to create a virtualenv which it then uses. So the new venv may not be patched? That being...

Tried adding a libs.nix file with the following: ``` let pkgs = import (builtins.getFlake "nixpkgs") { }; in [ pkgs.stdenv.cc.cc.lib ] ``` Then patch again and get ``` Found 6...