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
On my system, I have an old version of curl (7.15.5.) Running curl --version exits with a status of 2.
eio selfcheck runs the code (line 38 of util.py)
try:
subprocess.check_output(check_cli, shell=True, stderr=subprocess.STDOUT)
exceptsubprocess.CalledProcessError:
msg.append('%r not found or not usable.'%tool_name)
which fails then, even though curl is available.
Perhaps you could instead do something like
try:
subprocess.call(check_cli.split(), stderr=subprocess.STDOUT)
exceptOSError:
msg.append('%r not found or not usable.'%tool_name)
The text was updated successfully, but these errors were encountered:
@kundor unfortunately your suggestion or other variations that I tried don't work. The only possibility is to call curl --help instead of --version, can you test is it works for you?
On my system, I have an old version of curl (7.15.5.) Running curl --version exits with a status of 2.
eio selfcheck
runs the code (line 38 of util.py)which fails then, even though curl is available.
Perhaps you could instead do something like
The text was updated successfully, but these errors were encountered: