-
Hello, I tried to find the information between several discussions and issues in this repo but I did'nt find a clear answer so I ask it here. Is-it possible to use internal pypi repo with pipenv ? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
Hi @smutel The first index specified in your Pipfile will be the default. There are some new documentation updates in master that will be published when there is a new release soon, but basically if you omit PyPI or remove it from your Pipfile and specify your private pypi repo as the first source within the Pipfile, all unspecified packages will use that index by default. EDIT: version 2022.4.8 works for this case because it is more strict about determining if an index is in-fact pypi. |
Beta Was this translation helpful? Give feedback.
Hi @smutel The first index specified in your Pipfile will be the default. There are some new documentation updates in master that will be published when there is a new release soon, but basically if you omit PyPI or remove it from your Pipfile and specify your private pypi repo as the first source within the Pipfile, all unspecified packages will use that index by default.
EDIT: version 2022.4.8 works for this case because it is more strict about determining if an index is in-fact pypi.