Skip to content

Instantly share code, notes, and snippets.

@JonathanReeve
Created February 5, 2019 22:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JonathanReeve/5b79005038bd775aa0249e0720b2fe65 to your computer and use it in GitHub Desktop.
Save JonathanReeve/5b79005038bd775aa0249e0720b2fe65 to your computer and use it in GitHub Desktop.
Trying to install SpaCy for a dev environment
{ pkgs ? import <nixpkgs> {} }:
pkgs.stdenv.mkDerivation {
name = "shell-environment";
buildInputs = [
(pkgs.python3.withPackages (p: with p; [spacy]))
];
}
@JonathanReeve
Copy link
Author

Causes collision:

collision between `/nix/store/bfw27ldvy66v6mhwkzillzz1ddfz5lwf-python3.7-msgpack-0.5.6/lib/python3.7/site-packages/msgpack/__pycache__/exceptions.cpython-37.pyc' and `/nix/store/9dkp2r0hsr2jkd44qinw6m7fk8lsx2xy-
python3.7-msgpack-python-0.5.6/lib/python3.7/site-packages/msgpack/__pycache__/exceptions.cpython-37.pyc'                                                                                                         
builder for '/nix/store/7pqvkicnmi4b0snnqn69cy1kw3z0a74z-python3-3.7.2-env.drv' failed with exit code 25
error: build of '/nix/store/7pqvkicnmi4b0snnqn69cy1kw3z0a74z-python3-3.7.2-env.drv' failed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment