Merge pull request #31197 from joncfoo/patch-1

Fix nix-shell command example in python docs
This commit is contained in:
Frederik Rietdijk 2017-11-03 18:38:51 +01:00 committed by GitHub
commit 3a2cf94dd0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -165,7 +165,7 @@ run the script in the `python3` shell.
```py
#! /usr/bin/env nix-shell
#! nix-shell -i 'python3.withPackages(ps: [ps.numpy])'
#! nix-shell -i python3 -p 'python3.withPackages(ps: [ps.numpy])'
import numpy