About 50 results
Open links in new tab
  1. python - AttributeError: 'module' object has no attribute - Stack Overflow

    5 Circular imports cause problems, but Python has ways to mitigate it built-in. The problem is when you run python a.py, it runs a.py but not mark it imported as a module. So in turn a.py -> imports module …

  2. python - AttributeErrorの直し方 - スタック・オーバーフロー

    decodeメソッドはバイト列を変換する際に用いられるメソッドです。そのためstringオブジェクトにdecodeメソッドは用意されていません。 今回のエラーはそれを指摘しているものです。stringオブ …

  3. python - Why do I get AttributeError: 'NoneType' object has no ...

    AttributeError: 'NoneType' object has no attribute 'something' What general scenarios might cause such an AttributeError, and how can I identify the problem?

  4. Python error: AttributeError: 'module' object has no attribute

    Aug 29, 2013 · Python error: AttributeError: 'module' object has no attribute Asked 15 years ago Modified 5 years, 7 months ago Viewed 163k times

  5. python - AttributeError on 'mediapipe' module - Stack Overflow

    Dec 30, 2025 · tracker = HandTracker() self.mp_hands = mp.solutions.hands AttributeError: module 'mediapipe' has no attribute 'solutions' Is there any other approach/solution for this error?

  6. AttributeError: can't set attribute in python - Stack Overflow

    AttributeError: can't set attribute in python Asked 11 years, 11 months ago Modified 2 years, 3 months ago Viewed 304k times

  7. python - AttributeError: module 'pkgutil' has no attribute 'ImpImporter ...

    python -m ensurepip --upgrade python -m pip install --upgrade setuptools python -m pip install <module> One thing I've noticed over previous versions is that, at least on however mine is set up, the python …

  8. python - AttributeError: cython_sources - Stack Overflow

    Nov 15, 2023 · Edit: Adding the work arounds which worked for people. Two workarounds exist: 1.Preinstall cython<3, then install pyyaml without build isolation, then install the rest of your …

  9. python - AttributeError 'dataframe' object has no attribute 'str ...

    Jul 24, 2018 · AttributeError: 'DataFrame' object has no attribute 'map' As hoang tran explains, this is what is happening with OP as well. .str is a Series accessor and it's not implemented for DataFrames.

  10. Python AttributeError: class object has no attribute

    Sep 28, 2015 · Python AttributeError: class object has no attribute Asked 10 years, 4 months ago Modified 10 years, 4 months ago Viewed 25k times