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
sprawl_overview
The compute_grid_accessibility method fails during execution. After reading the source code, it seems that the problem comes from line 96:
compute_grid_accessibility
max_processes = int( ''.join(numbers) )
The value of numbers is probably not int-compatible (I suspect a null value), as a the log highlights a missing dependency (psutil).
numbers
psutil
The text was updated successfully, but these errors were encountered:
That's it, after adding psutil to conda env, the process is going further than previously... I will propose a small patch to amend the README file.
Sorry, something went wrong.
Merge pull request #4 from Oslandia/update_dependencies
4fb6889
fixes issue #3
No branches or pull requests
The
compute_grid_accessibility
method fails during execution. After reading the source code, it seems that the problem comes from line 96:The value of
numbers
is probably not int-compatible (I suspect a null value), as a the log highlights a missing dependency (psutil
).The text was updated successfully, but these errors were encountered: