Using Nix to manage my Python Interpreter ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ I recently started playing with nix. Date: November 14, 2021 I recently started playing with nix. goals ───── - automatically select correct python version per project - activating one doesn’t bleed into the other Installing nix ────────────── [code] curl -L https://nixos.org/nix/install | sh controlling nix-env ─────────────────── [code] nix-env -iA nixpkgs.python310 nix-env -iA nixpkgs.python39 nix-env -iA nixpkgs.python38 nix-env -iA nixpkgs.python37 searching for packages ────────────────────── https://search.nixos.org/ [code] nix-env -qaP .\*python.\* [code] nix search nixpkgs python shell ───── [code] nix-shell -p python39