Skip to content
Advertisement

pipenv not consistant from local to server

Im using pipenv to manage my dependencies, I have the following command working fine on my local machine:

pipenv install --dev

but when I run it on the server I get the following error:

JavaScript

I have handled pipenv errors before and most were pretty reasonable (clashes between dependency and sub-dependecies), but this one makes less sense to me as I did not specifically installed this package, but rather pipenv added it to the pipfile.lock and it doesnt find that version all together while locally that version is available for some reason.

I dont know which dependency is asking for that specific version either.

Pipfile.lock section:

JavaScript

Any ideas?

EDIT: you can see in the releases for pyparsing that this version does exist. See it here

Advertisement

Answer

Turns out that pyparsing have deleted a version, which is really weird.

I ended up updating a package (scipy) and it update pyparsing to 2.4.1.1, now works fine

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement