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
Now you can run find_forks one of the following methods:
specify path to folder:
python /path/to/find_forks
C:\Users\endolith\Sync\Programming\Wavelets\aaren wavelets\wavelets (my_changes)
(base) λ python C:\Users\endolith\Documents\GitHub\find_forks
Traceback (most recent call last):
File "C:\Anaconda3\lib\runpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "C:\Anaconda3\lib\runpy.py", line 85, in _run_code
exec(code, run_globals)
File "C:\Users\endolith\Documents\GitHub\find_forks\__main__.py", line 8, in <module>
from .find_forks.find_forks import main
ImportError: attempted relative import with no known parent package
specify module name If find_forks in your PYTHONPATH:
python -m find_forks
C:\Users\endolith\Sync\Programming\Wavelets\aaren wavelets\wavelets (my_changes)
λ python -m find_forks
C:\Anaconda3\python.exe: No module named find_forks.__main__; 'find_forks' is a package and cannot be directly executed
or if you obtained zip from github you could simply run it:
python /path/to/find_forks.zip
C:\Users\endolith\Sync\Programming\Wavelets\aaren wavelets\wavelets (my_changes)
λ python C:\Users\endolith\Documents\GitHub\find_forks\find_forks\find_forks.py
Traceback (most recent call last):
File "C:\Users\endolith\Documents\GitHub\find_forks\find_forks\find_forks.py", line 14, in <module>
from .__init__ import CONFIG
ImportError: attempted relative import with no known parent package
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: