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
When @brackettsa was experimenting with funder-finder, she ran into a ModuleNotFoundError: No module named 'funderfinder' error.
I think when a new user naively follows the instructions on the README, they get to the below:
Change to funderfinder directory and run get_funders.py with the --help flag.
cd funderfinder
python get_funders.py --help
And will hit the ModuleNotFoundError: No module named 'funderfinder' error.
I think the solution is to change the python get_funders.py --help to PYTHONPATH='.' python3 funderfinder/get_funders.py.
There might need to be an explanation about PYTHONPATH too. Sorry this is a bad bug report. I don't entirely understand the problem, otherwise I'd write a better bug report :)
The text was updated successfully, but these errors were encountered:
When @brackettsa was experimenting with
funder-finder
, she ran into aModuleNotFoundError: No module named 'funderfinder'
error.I think when a new user naively follows the instructions on the README, they get to the below:
And will hit the
ModuleNotFoundError: No module named 'funderfinder'
error.I think the solution is to change the
python get_funders.py --help
toPYTHONPATH='.' python3 funderfinder/get_funders.py
.There might need to be an explanation about PYTHONPATH too. Sorry this is a bad bug report. I don't entirely understand the problem, otherwise I'd write a better bug report :)
The text was updated successfully, but these errors were encountered: