Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Imports #3

Closed
michaelweinold opened this issue Apr 12, 2023 · 1 comment
Closed

Fix Imports #3

michaelweinold opened this issue Apr 12, 2023 · 1 comment
Assignees
Labels
bug Something isn't working

Comments

@michaelweinold
Copy link
Collaborator

Imports seem to be broken. environment.yml

name: xeus-python-kernel
channels:
  - conda-forge
  - nodefaults
dependencies:
  - matplotlib:
      channels:
        - https://repo.mamba.pm/emscripten-forge
  - numpy:
      channels:
        - https://repo.mamba.pm/emscripten-forge
  - pandas:
      channels:
        - https://repo.mamba.pm/emscripten-forge
  - tqdm:
      channels:
        - conda-forge

gives:

Screenshot 2023-04-12 at 13 07 39

@michaelweinold michaelweinold added the bug Something isn't working label Apr 12, 2023
@michaelweinold michaelweinold self-assigned this Apr 12, 2023
@michaelweinold
Copy link
Collaborator Author

Not sure it makes sense to specify anything any channels beyond the QuantStack Mamba servers in the first place. Also, while the syntax

  - numpy:
      channels:
        - https://repo.mamba.pm/emscripten-forge

does not throw an error during build, it does not seem to be canonical (or mentioned in the documentation of Conda). For now, best to use a recipe like used in the xeus-python-kernel template:

name: xeus-python-kernel
channels:
  - https://repo.mamba.pm/emscripten-forge
  - https://repo.mamba.pm/conda-forge
dependencies:
  - numpy
  - matplotlib
  - ipycanvas

@michaelweinold michaelweinold transferred this issue from brightway-lca/brightway-book May 28, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant