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
{description="Application packaged using poetry2nix";nixConfig.bash-prompt-suffix="[myApp-dev]> ";inputs.flake-utils.url="github:numtide/flake-utils";inputs.nixpkgs.url="github:NixOS/nixpkgs/nixos-unstable";inputs.poetry2nix={url="github:nix-community/poetry2nix/master";inputs.nixpkgs.follows="nixpkgs";};outputs={self,nixpkgs,flake-utils,poetry2nix}:
flake-utils.lib.eachDefaultSystem(system:
let# see https://github.com/nix-community/poetry2nix/tree/master#api for more functions and examples.inherit(poetry2nix.lib.mkPoetry2Nix{inheritpkgs;})mkPoetryEnvmkPoetryApplicationdefaultPoetryOverrides;pkgs=nixpkgs.legacyPackages.${system};in{devShells={myApp=(letpoetryEnv=mkPoetryEnv{projectDir=./.;python=pkgs.python311;preferWheels=true;};env=poetryEnv.env.overrideAttrs(_: {shellHook='' export LD_LIBRARY_PATH="${pkgs.stdenv.cc.cc.lib}/lib"; '';});inenv);default=self.devShells.${system}.myApp;};});}
Describe the issue
When trying to use
torchvision
stdenv complained about not being able to findaddAutoPatchelfSearchPath
.That's because on this line we're missing
Additional context
default.nix
/shell.nix
/flake.nix
:pyproject.toml
:The text was updated successfully, but these errors were encountered: