Why Python does not recognize "kivy" module for me? - python

After I install the "kivy" python module, the python console and IDEs don't recognize it as a module, as if it doesn't exist.
ModuleNotFoundError: No module named 'kivy'
I do the installation normally like any other. I reinstalled the module several times and looked for all possible solutions, but nothing. Also, pip list and pip3 list tells me the module is there. What should I do?

When I completely reinstalled the system the problem was solved.

Related

"No Module Named Mouse" error though mouse is installed

my code is having an issue in which when i run the program it gives the error message :
ImportError: No module named 'mouse'
this happens even though the module is installed???
Code below:
import mouse
print(mouse.get_position())
If you can't use the module globally, please try to install it and use the module using a virtual environment as an example you can use anaconda.
If you are using IDE like PyCharm make sure you download the package on the IDE.
In pycharm go to Setting->Python Interpretor->Click + ->search your package name (in this case mouse) -> install the package

Module importing works in python console (pycharm) but not works on terminal

Hi i'm recently working on a module in python (package named pykiwoom)
I installed a module in conda 32-bit environment pip install pykiwoom and tried to import this
from pykiwoom.kiwoom import Kiwoom
This works perfectly fine when I execute this in python console in pycharm
However, when I try this in terminal error occurs
ModuleNotFoundError: No module named 'pykiwoom.kiwoom'; 'pykiwoom' is not a package
internal structure of package pykiwoom looks like this
pykiwoom
init.py
kiwoom.py
parser.py
Can somebody tell me why this error occurs?
I think where you install your package is important in your case. You can check the packages installed using pip list in terminal, and check if you find it there.
This solution provides overview of how to setup your files as packages and modules.
Nevertheless, I think if you install your package in the terminal using pip, you could possibly access it.

ModuleNotFoundError: No module named 'zipfile' when using pip

I'm new to Python and I have installed multiple versions (Anaconda3 and Python 3.7.4) on my Mac.
My pip is not working. When I run any pip command, everything appears to be importing properly. But it gets the last line, import zipfile, and I get the message:
ModuleNotFoundError: No module named 'zipfile'
I have been Googling for hours and I can't seem to find a solution.
My Python now lives in the Anaconda directory /users/NAME/opt/anaconda3/.
Ultimately, I would like to start from scratch and just reinstall Python 3.7.4 again, so it's all nice and clean. I can't uninstall Anaconda because I get the same ModuleNotFoundError: No module named 'zipfile'.
I have also tried to install the module zipfile and that doesn't work either.
Can someone help?
Thanks
Thanks everyone for your help so far. I am really new to Python, so I don't think I explained myself properly.
UPDATE: I think I have fixed my problem. Pip was looking for the file zipfile, so I downloaded https://pypi.org/project/zipfile36/#files and changed the name of zipfile36.py to zipfile.py.
Seems like it did the trick.

XBRL Module Not Recognized

I've downloaded the XBRL module using pip install. But the Python interpreter says "No module named 'xbrl'", despite the XBRL being present via C:\Program Files\Python36\Lib\site-packages. How do I resolve this issue so I can run XBRL in Python?
I think you need to install python-xbrl.
Th easiest way is with pip :
pip install python-xbrl
Do you have two Pythons? It could be you installed the module with one pip/python and tried to import with another python.
Anyway there is nothing to use: the module xbrl.py doesn't have any content. This xbrl.py is unusable, you should look for a different implementation.

No module named 'django_cas_ng'

I am trying to run a webpage using PyCharm, but when I run the server, I see an error saying: ModuleNotFoundError: No module named 'django_cas_ng'.
I looked up for solutions on sources like this, this, and this. I believed I needed to install specific modules but none of them worked
To solve this problem, I used pip install django-cas-ng multiple times, but it did not go through. I restarted PyCharm and used the same line of code, it worked this time.

Categories