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
Per #84, we use ipfs --version via Python subprocess to check if ipfs is installed before firing off subsequent ipwb procedures. @ibnesayeed mentioned that Py2's find_executable and Py3's shutil.which would incur much less expense to the system and it would be better to keep the call in Python instead of forking processes.
The text was updated successfully, but these errors were encountered:
machawk1
changed the title
Use other methods to check if ipfs is installed
Use Python-native methods to check if ipfs is installed instead of subprocess
Jan 25, 2017
Per #84, we use
ipfs --version
via Python subprocess to check if ipfs is installed before firing off subsequent ipwb procedures. @ibnesayeed mentioned that Py2'sfind_executable
and Py3'sshutil.which
would incur much less expense to the system and it would be better to keep the call in Python instead of forking processes.The text was updated successfully, but these errors were encountered: