We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When I install Sling into a Pipenv environment on my Mac, the Pipfile contains the following entry:
"sling": { "hashes": [ "sha256:40c77d0cf4ade41618b33c46704fbe85f6ebec0c1119decfee43125591d8bce0" ], "index": "pypi", "version": "==1.2.13" }
When I pipenv install that onto a Windows machine, and try to run Sling, I get the error
pipenv install
ModuleNotFoundError: No module named 'sling_windows_amd64'
If I uninstall and reinstall Sling ($ pipenv uninstall Sling && pipenv install Sling) it works.
$ pipenv uninstall Sling && pipenv install Sling
When I check the Pipfile.lock, I see that when I install Sling on a Windows machine it has an additional entry sling-windows-amd64:
sling-windows-amd64
"sling": { "hashes": [ "sha256:40c77d0cf4ade41618b33c46704fbe85f6ebec0c1119decfee43125591d8bce0" ], "index": "pypi", "version": "==1.2.13" }, "sling-windows-amd64": { "hashes": [ "sha256:d8041ad75842b60ae8305a33a05ee9c08bb03ce2eb233910c11ffd1465d33e0d" ], "version": "==1.2.13" },
This makes sense in a way, but is not helpful in a multi-system team.
I think it would be better, if all versions were being installed (I'm guessing there are more version than just 'sling' and 'sling-windows-amd64').
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I install Sling into a Pipenv environment on my Mac, the Pipfile contains the following entry:
When I
pipenv install
that onto a Windows machine, and try to run Sling, I get the errorIf I uninstall and reinstall Sling (
$ pipenv uninstall Sling && pipenv install Sling
) it works.When I check the Pipfile.lock, I see that when I install Sling on a Windows machine it has an additional entry
sling-windows-amd64
:This makes sense in a way, but is not helpful in a multi-system team.
I think it would be better, if all versions were being installed (I'm guessing there are more version than just 'sling' and 'sling-windows-amd64').
The text was updated successfully, but these errors were encountered: