如何使用default.nix文件运行`nix-shell`?

时间:2017-09-08 01:14:03

标签: python nix

我试图了解nix的工作原理。为此,我尝试创建一个简单的环境来运行jupyter笔记本。

当我运行命令时:

nix-shell -p "\
    with import <nixpkgs> {};\
    python35.withPackages (ps: [\
        ps.numpy\
        ps.toolz\
        ps.jupyter\
    ])\
    "

我得到了我的预期 - 在python和安装的所有软件包的环境中的shell,以及路径中可访问的所有预期命令:

[nix-shell:~/dev/hurricanes]$ which python
/nix/store/5scsbf8z3jnz8ardch86mhr8xcyc8jr2-python3-3.5.3-env/bin/python

[nix-shell:~/dev/hurricanes]$ which jupyter
/nix/store/5scsbf8z3jnz8ardch86mhr8xcyc8jr2-python3-3.5.3-env/bin/jupyter

[nix-shell:~/dev/hurricanes]$ jupyter notebook
[I 22:12:26.191 NotebookApp] Serving notebooks from local directory: /home/calsaverini/dev/hurricanes
[I 22:12:26.191 NotebookApp] 0 active kernels 
[I 22:12:26.191 NotebookApp] The Jupyter Notebook is running at: http://localhost:8888/?token=7424791f6788af34f4c2616490b84f0d18353a4d4e60b2b5

因此,我创建了一个包含单个default.nix文件的新文件夹,其中包含以下内容:

with import <nixpkgs> {};

python35.withPackages (ps: [
  ps.numpy 
  ps.toolz
  ps.jupyter
])

当我在此文件夹中运行nix-shell时,似乎所有内容都已安装但PATH未设置:

[nix-shell:~/dev/hurricanes]$ which python
/usr/bin/python

[nix-shell:~/dev/hurricanes]$ which jupyter

[nix-shell:~/dev/hurricanes]$ jupyter
The program 'jupyter' is currently not installed. You can install it by typing:
sudo apt install jupyter-core

通过我read here,我期待这两种情况是等价的。我做错了什么?

1 个答案:

答案 0 :(得分:7)

您的default.nix文件应该包含用nix-build调用它时构建派生的信息。使用nix-shell调用它时,它只是以可构建派生的方式设置shell。特别是,它将PATH变量设置为包含buildInput属性中列出的所有内容:

with import <nixpkgs> {};

stdenv.mkDerivation {

  name = "my-env";

  # src = ./.;

  buildInputs =
    python35.withPackages (ps: [
      ps.numpy 
      ps.toolz
      ps.jupyter
    ]);

}

在这里,如果您想要运行src,我已经注释了nix-build属性,但在您刚刚运行nix-shell时则不需要。

在你的最后一句中,我想你更准确地指的是这个: https://github.com/NixOS/nixpkgs/blob/master/doc/languages-frameworks/python.section.md#load-environment-from-nix-expression 我不明白这个建议:对我来说,这看起来很简单。