ImportError no module named calendar - python

I have installed Python 2.7.5 on my Windows 7 host. I want to use the CalendarCtrl widget which is part of 'wx.calendar' module. When I try to import calendar I get the following error:
>>> import wx
>>> import wx.calendar
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named calendar
On Linux host I have no problem with the
import wx.calendar
statement. Any help to resolve the issue is much appreciated.

Related

I can't run Custom-Widgets for PyQt5, how can I solve it?

I tried to simplify my code with the tool Custom-Widgets, I want to custom a animated menu, after the installation of Custom-Widgets from https://github.com/KhamisiKibet/QT-PyQt-PySide-Custom-Widgets
I try to prove it with the demo:
from Custom_Widgets.ProgressIndicator import test
test.main()
but It doesn't find the package of this.
I had this output:
Traceback (most recent call last):
File "c:\Users\user\Desktop\try\provePyQT.py", line 1, in <module>
import Custom_Widgets
ModuleNotFoundError: No module named 'Custom_Widgets'
What can I do with this error?

No module named ‘torchvision.models.utils‘

When I use the environment of pytorch=1.10.0, torchvision=0.11.1 to run the code, I run to the statement from torchvision.models.utils import load_state_dict_from_url. The following error will appear when:
>>> from torchvision.models.utils import load_state_dict_from_url
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'torchvision.models.utils'
After consulting torchvision's code repository, there is a solution:
Note that this syntax is only for higher versions of PyTorch.
The original code from .utils import load_state_dict_from_url is not applicable.
you connot import load_state_dict_from_url from .utils.
change .utils to torch.hub can fix the problem.
from torch.hub import load_state_dict_from_url
This worked for me.

My library isn't recognized by python 3 even though I am certain that it is installed

I'm certain that I have installed the library using pip and it has returned the confirmation that it has been installed. When the import command is run, it throws a ModuleNotFoundError.This problem is not exclusive to this particular library and none of the libraries that are not included in the python default package works.
The code is:
>>> from PyQt5 import Qwidgets Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: cannot import name 'Qwidgets' from 'PyQt5' (C:\Users\Franklin Joe\AppData\Local\Programs\Python\Python38-32\lib\site-packages\PyQt5\__init__.py)

Import ASE Module on python

After installing 'ase' (Atomic Simulation Module) module using pip in Python 3.7.3, Failed to import the module using python shell, although it is found in the pip list.
>>> import ase
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import ase
ModuleNotFoundError: No module named 'ase'

ImportError: cannot import name main

I recently rearranged some folders around and a python file I used to run is no longer working. When I try to run the file I get:
Traceback (most recent call last):
File "twitter_stream.py", line 9, in <module>
from tweepy import Stream
ImportError: No module named tweepy
I don't understand why I no longer have tweepy installed because I just had it When I do a simple 'pip3 install tweepy' I get:
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/3.5/bin/pip3", line
7, in <module>
from pip import main
ImportError: cannot import name main
I'm not sure what happened here. Any help would be greatly appreciated

Categories

Resources