Skip to content
New issue

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

Unable to import CascadeForestClassifier #131

Open
tomthecat1 opened this issue Jul 24, 2023 · 10 comments
Open

Unable to import CascadeForestClassifier #131

tomthecat1 opened this issue Jul 24, 2023 · 10 comments

Comments

@tomthecat1
Copy link

Despite following the instructions provided in the README document and using pip to install 'deep-forest,' I encountered a 'ModuleNotFoundError' when trying to import the package in my code.

To troubleshoot, I attempted to clone the GitHub repository directly and forced the environment to recognize the cloned path. Unfortunately, this resulted in another error: 'ImportError: cannot import name '_cutils' from partially initialized module 'deepforest' (most likely due to a circular import) (/content/Deep-Forest/deepforest/init.py).'

This is the full error message:

ImportError Traceback (most recent call last)
in <cell line: 1>()
----> 1 from deepforest.cascade import CascadeForestClassifier

2 frames
/content/Deep-Forest/deepforest/_utils.py in
5 from datetime import datetime
6
----> 7 from . import _cutils as _LIB
8
9

ImportError: cannot import name '_cutils' from partially initialized module 'deepforest' (most likely due to a circular import) (/content/Deep-Forest/deepforest/init.py)


NOTE: If your import is failing due to a missing package, you can
manually install dependencies using either !pip or !apt.

To view examples of installing some common dependencies, click the
"Open Examples" button below.

@xuyxu
Copy link
Member

xuyxu commented Jul 24, 2023

Hi @tomthecat1, I have sent you an email to solve this issue. Feel free to comment below if you have any other problem.

@XiaoYigao
Copy link

I also have this problem, how should I solve it?

@0313Fly
Copy link

0313Fly commented Oct 9, 2023

Hi @tomthecat1, I have sent you an email to solve this issue. Feel free to comment below if you have any other problem.

I also have this problem, could you please email to me?Thanks very much.
My email: [email protected]

@ipap0123
Copy link

Hi @xuyxu, I have the same issue when trying to run the python code in Windows. Can you please send me the solution for this issue?

@RaXie0101
Copy link

Hi @xuyxu , I have the same issue when trying to run the python code. Can you please send me the solution for this issue?My email: [email protected]

@xsyshr
Copy link

xsyshr commented Dec 7, 2023

Hi @xuyxu , I have the same issue when trying to run the python code. Can you please send me the solution for this issue? My email: [email protected]

@leschultz
Copy link

Can somebody actually post the solution here instead of sending private email solutions? This is important for result replication.

@zhuyongWillem
Copy link

@xuyxu 我也遇见了这个问题,可以发一下怎么解决的吗?邮箱[email protected]

@MichaelTan2016
Copy link

@xuyxu 同求,邮箱[email protected]

@Mitesh-web
Copy link

While installing deep-forest using pip intall . the error says "Getting requirements to build wheel did not run successfully."
Would like a solution for this. Currently running python 3.12 on windows and have installed the repository manually.
This is the complete error message:

(new_env) C:\Users\mites\Deep-Forest>pip install .
Processing c:\users\mites\deep-forest
Installing build dependencies ... done
Getting requirements to build wheel ... error
error: subprocess-exited-with-error

× Getting requirements to build wheel did not run successfully.
│ exit code: 1
╰─> [33 lines of output]
Traceback (most recent call last):
File "C:\Users\mites\Deep-Forest\new_env\Lib\site-packages\pip_vendor\pyproject_hooks_in_process_in_process.py", line 353, in
main()
File "C:\Users\mites\Deep-Forest\new_env\Lib\site-packages\pip_vendor\pyproject_hooks_in_process_in_process.py", line 335, in main
json_out['return_val'] = hook(**hook_input['kwargs'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\mites\Deep-Forest\new_env\Lib\site-packages\pip_vendor\pyproject_hooks_in_process_in_process.py", line 112, in get_requires_for_build_wheel
backend = _build_backend()
^^^^^^^^^^^^^^^^
File "C:\Users\mites\Deep-Forest\new_env\Lib\site-packages\pip_vendor\pyproject_hooks_in_process_in_process.py", line 77, in build_backend
obj = import_module(mod_path)
^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Program Files\Python312\Lib\importlib_init
.py", line 90, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "", line 1387, in _gcd_import
File "", line 1360, in _find_and_load
File "", line 1310, in _find_and_load_unlocked
File "", line 488, in _call_with_frames_removed
File "", line 1387, in _gcd_import
File "", line 1360, in _find_and_load
File "", line 1331, in _find_and_load_unlocked
File "", line 935, in load_unlocked
File "", line 995, in exec_module
File "", line 488, in call_with_frames_removed
File "C:\Users\mites\AppData\Local\Temp\pip-build-env-jy24x6aj\overlay\Lib\site-packages\setuptools_init
.py", line 16, in
import setuptools.version
File "C:\Users\mites\AppData\Local\Temp\pip-build-env-jy24x6aj\overlay\Lib\site-packages\setuptools\version.py", line 1, in
import pkg_resources
File "C:\Users\mites\AppData\Local\Temp\pip-build-env-jy24x6aj\overlay\Lib\site-packages\pkg_resources_init
.py", line 2172, in
register_finder(pkgutil.ImpImporter, find_on_path)
^^^^^^^^^^^^^^^^^^^
AttributeError: module 'pkgutil' has no attribute 'ImpImporter'. Did you mean: 'zipimporter'?
[end of output]

note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error

× Getting requirements to build wheel did not run successfully.
│ exit code: 1
╰─> See above for output.

note: This error originates from a subprocess, and is likely not a problem with pip.

(new_env) C:\Users\mites\Deep-Forest>python -c "from deepforest import CascadeForestClassifier; print(CascadeForestClassifier)"
Traceback (most recent call last):
File "", line 1, in
File "C:\Users\mites\Deep-Forest\deepforest_init_.py", line 1, in
from .cascade import CascadeForestClassifier, CascadeForestRegressor
File "C:\Users\mites\Deep-Forest\deepforest\cascade.py", line 21, in
from . import _io, _utils
File "C:\Users\mites\Deep-Forest\deepforest_utils.py", line 7, in
from . import _cutils as _LIB
ImportError: cannot import name 'cutils' from partially initialized module 'deepforest' (most likely due to a circular import) (C:\Users\mites\Deep-Forest\deepforest_init.py)

(new_env) C:\Users\mites\Deep-Forest>pip uninstall setuptools
Found existing installation: setuptools 74.1.2
Uninstalling setuptools-74.1.2:
Would remove:
c:\users\mites\deep-forest\new_env\lib\site-packages_distutils_hack*
c:\users\mites\deep-forest\new_env\lib\site-packages\distutils-precedence.pth
c:\users\mites\deep-forest\new_env\lib\site-packages\pkg_resources*
c:\users\mites\deep-forest\new_env\lib\site-packages\setuptools-74.1.2.dist-info*
c:\users\mites\deep-forest\new_env\lib\site-packages\setuptools*
Proceed (Y/n)? pip install setuptools
Your response ('pip install setuptools') was not one of the expected responses: y, n,
Proceed (Y/n)? y
Successfully uninstalled setuptools-74.1.2

(new_env) C:\Users\mites\Deep-Forest>pip install setuptools
Collecting setuptools
Using cached setuptools-74.1.2-py3-none-any.whl.metadata (6.7 kB)
Using cached setuptools-74.1.2-py3-none-any.whl (1.3 MB)
Installing collected packages: setuptools
Successfully installed setuptools-74.1.2

(new_env) C:\Users\mites\Deep-Forest>pip update setuptools
ERROR: unknown command "update"

(new_env) C:\Users\mites\Deep-Forest>pip install .
Processing c:\users\mites\deep-forest
Installing build dependencies ... done
Getting requirements to build wheel ... error
error: subprocess-exited-with-error

× Getting requirements to build wheel did not run successfully.
│ exit code: 1
╰─> [33 lines of output]
Traceback (most recent call last):
File "C:\Users\mites\Deep-Forest\new_env\Lib\site-packages\pip_vendor\pyproject_hooks_in_process_in_process.py", line 353, in
main()
File "C:\Users\mites\Deep-Forest\new_env\Lib\site-packages\pip_vendor\pyproject_hooks_in_process_in_process.py", line 335, in main
json_out['return_val'] = hook(**hook_input['kwargs'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\mites\Deep-Forest\new_env\Lib\site-packages\pip_vendor\pyproject_hooks_in_process_in_process.py", line 112, in get_requires_for_build_wheel
backend = _build_backend()
^^^^^^^^^^^^^^^^
File "C:\Users\mites\Deep-Forest\new_env\Lib\site-packages\pip_vendor\pyproject_hooks_in_process_in_process.py", line 77, in build_backend
obj = import_module(mod_path)
^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Program Files\Python312\Lib\importlib_init
.py", line 90, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "", line 1387, in _gcd_import
File "", line 1360, in _find_and_load
File "", line 1310, in _find_and_load_unlocked
File "", line 488, in _call_with_frames_removed
File "", line 1387, in _gcd_import
File "", line 1360, in _find_and_load
File "", line 1331, in _find_and_load_unlocked
File "", line 935, in load_unlocked
File "", line 995, in exec_module
File "", line 488, in call_with_frames_removed
File "C:\Users\mites\AppData\Local\Temp\pip-build-env-2wm0rxmk\overlay\Lib\site-packages\setuptools_init
.py", line 16, in
import setuptools.version
File "C:\Users\mites\AppData\Local\Temp\pip-build-env-2wm0rxmk\overlay\Lib\site-packages\setuptools\version.py", line 1, in
import pkg_resources
File "C:\Users\mites\AppData\Local\Temp\pip-build-env-2wm0rxmk\overlay\Lib\site-packages\pkg_resources_init
.py", line 2172, in
register_finder(pkgutil.ImpImporter, find_on_path)
^^^^^^^^^^^^^^^^^^^
AttributeError: module 'pkgutil' has no attribute 'ImpImporter'. Did you mean: 'zipimporter'?
[end of output]

note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error

× Getting requirements to build wheel did not run successfully.
│ exit code: 1
╰─> See above for output.

note: This error originates from a subprocess, and is likely not a problem with pip.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests