You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example, running session.install("requests", "urllib3", silent=False) results in the following error:
TypeError: run() got multiple values for keyword argument 'silent'
This is because session.install() calls self.run("pip", "install", "--upgrade", *args, silent=True, external="error", **kwargs) which doesn't allow for silent or external to be set in kwargs.
I'll be opening a pull request shortly which checks if silent is found in kwargs before attempting to set a default.
The text was updated successfully, but these errors were encountered:
For example, running
session.install("requests", "urllib3", silent=False)
results in the following error:This is because
session.install()
callsself.run("pip", "install", "--upgrade", *args, silent=True, external="error", **kwargs)
which doesn't allow forsilent
orexternal
to be set in kwargs.I'll be opening a pull request shortly which checks if
silent
is found in kwargs before attempting to set a default.The text was updated successfully, but these errors were encountered: