is there a way to transfer credentials from requirements.txt when creating pipfile for the first time? #5422
Unanswered
vishal180618
asked this question in
Q&A
Replies: 1 comment
-
To create pipenv --python=<version> For a safer way to inject credentials, see https://pipenv.pypa.io/en/latest/credentials/ |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I created a new Pipfile using
pipenv install -r requirements.txt
, and it was stuck forever. The reason was there was credentials present in the GitHub URL and thePipfile
was created with masked credentials hence it was taking forever to fetch/install dependency using the masked credentials URL.Is there should be a command to just create Pipfile only and not install dependency?
Is there a way I can transfer credentials from requirements to Pipfile?
Beta Was this translation helpful? Give feedback.
All reactions