繁体   English   中英

Tkcalendar 安装正确但仍然出现“找不到模块”错误

[英]Tkcalendar installed correctly but still gives 'module not found' error

我通过 pip 像往常一样安装了 tkcalendar 并且安装得很好:

C:\Users\Pavel>python -m pip install tkcalendar
Collecting tkcalendar
  Downloading https://files.pythonhosted.org/packages/44/18/2d6a50fd9703a4cf96a24d12aee5a21b33e75d0b3e6b25fa4dcd7d06efc1/tkcalendar-1.5.1-py3-none-any.whl
Collecting babel (from tkcalendar)
  Downloading https://files.pythonhosted.org/packages/2c/60/f2af68eb046c5de5b1fe6dd4743bf42c074f7141fe7b2737d3061533b093/Babel-2.7.0-py2.py3-none-any.whl (8.4MB)
     |████████████████████████████████| 8.4MB 6.4MB/s
Requirement already satisfied: pytz>=2015.7 in c:\users\pavel\appdata\local\packages\pythonsoftwarefoundation.python.3.7_qbz5n2kfra8p0\localcache\local-packages\python37\site-packages (from babel->tkcalendar) (2019.3)
Installing collected packages: babel, tkcalendar
Successfully installed babel-2.7.0 tkcalendar-1.5.1

然而,当我尝试运行我的脚本时,我收到一个错误,该模块未找到:

 File "C:/Python_working/exercies/tkinter.py", line 7, in <module>
    from tkcalendar import Calendar, DateEntry

ModuleNotFoundError: No module named 'tkcalendar'

我尝试重新启动 Spyder,尝试使用pip重新安装,但我只收到一条消息,该包已安装。

最后,我尝试使用conda安装软件包,但在这里出现以下错误:

PackagesNotFoundError: The following packages are not available from current channels:

  - tkcalendar

不知道还有什么办法可以解决这个问题。

使用 Python 3.7 和 Spyder 3.3.6。

更新:从命令提示符运行 python 然后运行import tkcalendar工作正常。

我在 github 上找到了有关在 Spyder 中使用虚拟环境的指南,但这似乎有点超出我的理解......

好吧……在这篇文章中找到了答案。

基本上,这个想法是,对于不属于正常 Spyder/Anaconda 安装的包,您需要转到 Tools -> PYTHONPATH 并为每个模块添加一个新文件夹。 然后重新启动 Spyder,一切正常。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM