You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
where find_library is imported from ctypes.util. I'm guessing it needs some c dependency (something called pam) that we don't have.
Any workaround ideas?
Minimal .nix file
{pkgs?import<nixpkgs>{}}:
letpythonOnNix=import(builtins.fetchGit{# Use `main` branch or a commit from this list:# https://github.com/on-nix/python/commits/mainref="main";url="https://github.com/on-nix/python";}){};env=pythonOnNix.python39Env{name="Danaswap-analytics";projects={jupyterhub="latest";pamela="latest";# needed for jupyterhub };};inenv.dev
I'll update if changing python3xEnv digit changes anything.
The text was updated successfully, but these errors were encountered:
In regards to #11, it looks like the current best way to get a
jupyter notebook
throughpython.on-nix
is to usejupyterhub
.When I try to run
jupyterhub
, it breaks atimport pamela
So
LIBPAM
lacks the attributepam_strerror
. Some digging:/nix/store/narw7qrnby9wrs84cj606flc2g2431wl-pamela-latest-python39-out/lib/python3.9/site-packages/pamela.py
where
find_library
is importedfrom ctypes.util
. I'm guessing it needs somec
dependency (something calledpam
) that we don't have.Any workaround ideas?
Minimal
.nix
fileI'll update if changing
python3xEnv
digit changes anything.The text was updated successfully, but these errors were encountered: