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
Title: pip install Does Not Install Required Dependencies in Latest Release
Description:
Installing jupyterhub-samlauthenticator using pip install jupyterhub-samlauthenticator completes the installation of the package but fails to install its necessary dependencies. This results in missing dependency errors when attempting to use the package.
Steps to Reproduce:
Create and activate an isolated Python environment (e.g., using venv or conda).
Run pip install jupyterhub-samlauthenticator.
Attempt to import the Authenticator with the command:
fromjupyterhub.authimportAuthenticator
Observe the error:
ModuleNotFoundError: No module named 'jupyterhub'
Expected Behavior:
All required dependencies, including modules like jupyterhub.auth, should be automatically installed with the package, allowing for successful imports and usage.
Actual Behavior:
Dependencies are not installed, leading to import errors such as ModuleNotFoundError when attempting to use components like Authenticator.
Environment:
Python version: 3.8
pip version: 21.0
Operating System: Ubuntu 20.04
Additional Information:
This issue affects the latest release (v0.0.10) of jupyterhub-samlauthenticator. Installing the package in an isolated environment and attempting to import Authenticator results in missing module errors, indicating that dependencies were not properly installed.
Thank you!
The text was updated successfully, but these errors were encountered:
There is some stuff that I need to work on RE: cleaning up 0.0.10, apparently this is one of those things.
I'm guessing it's due to Python changing its packaging format. As a temporary workaround, run a pip install of the requirements.txt file in the root of the repo.
Title:
pip install
Does Not Install Required Dependencies in Latest ReleaseDescription:
Installing
jupyterhub-samlauthenticator
usingpip install jupyterhub-samlauthenticator
completes the installation of the package but fails to install its necessary dependencies. This results in missing dependency errors when attempting to use the package.Steps to Reproduce:
venv
orconda
).pip install jupyterhub-samlauthenticator
.Expected Behavior:
All required dependencies, including modules like
jupyterhub.auth
, should be automatically installed with the package, allowing for successful imports and usage.Actual Behavior:
Dependencies are not installed, leading to import errors such as
ModuleNotFoundError
when attempting to use components likeAuthenticator
.Environment:
Additional Information:
This issue affects the latest release (
v0.0.10
) ofjupyterhub-samlauthenticator
. Installing the package in an isolated environment and attempting to importAuthenticator
results in missing module errors, indicating that dependencies were not properly installed.Thank you!
The text was updated successfully, but these errors were encountered: