-
Notifications
You must be signed in to change notification settings - Fork 7
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
dependency error in repo #46
Comments
@oindrillac the error you see is because you're trying to install a new "local" package (see the To install all the dependencies from the lock file you should run
Adding the local package to dependencies is not recommended, since it may lead to multitude of problems, from being unable to use |
/sig docs |
Related: thoth-station/thoth-application#816 |
@tumido thanks for the advice, I was using the commands interchangeably. When I try
on running
|
|
The commands are not interchangible at all though.
If you run the Please reset/checkout your Pipfile back to the master branch and run When you want to set up a project workspace, you want to install the dependencies prescribed in the lock file. You should never be locking or re-locking dependencies in such case. Locking should happen only if the dependency graph changes somehow. The fact that you are trying to lock the Pipfile again means something went wrong and you're no more installing the original set of dependencies. See here, I'm running it all from scratch:
I'm running on clean master branch, install the dependencies and end up with a clean master branch again. And that's how it's supposed to behave. |
Thanks for saving the day @tumido 🙌 that makes perfect sense and on a clean master, this works for me. |
Describe the bug
there is some mismatch in dependency versions which causes pipenv install to fail
To Reproduce
Steps to reproduce the behavior:
git clone [email protected]:aicoe-aiops/mailing-list-analysis-toolkit.git
pipenv install .
Gives
Expected behavior
pipenv install .
shyould succesfully install all dependencies without any errorThe text was updated successfully, but these errors were encountered: