Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • Interesting solution, why do you use --no-deps for your second pip call? I assume this would not be correct if you were using something that had another dependency? Commented Jan 21, 2021 at 3:41
  • 1
    just ran the code without and got this nice message .... "When restricting platform and interpreter constraints using --python-version, --platform, --abi, or --implementation, either --no-deps must be set, or --only-binary=:all: must be set and --no-binary must not be set (or must be set to :none:)." Commented Jan 21, 2021 at 5:04
  • 2
    @Jimbo that sounds right. To be honest I don't completely remember but I think that I had to do a round or two of getting error messages to make sure I had all of the dependencies in one of the requirements files (with a notable one being pytz which also needs to be loaded as the linux version) Commented Jan 22, 2021 at 6:03