PyCharm表示,即使正确地设置了项目解释器,并且在PyCharm内置的Package Installer中已经使用pip安装了我要使用的软件包,它也找不到对某些软件包的引用。
屏幕截图:https://i.imgur.com/a2DY3K0.png
我已经尝试过:
示例代码(请参见上面的屏幕截图):
from bs4 import BeautifulSoup
from tkinter import Tk
print(BeautifulSoup)
print(Tk)
PyCharm工具提示说什么
Cannot find reference 'BeautifulSoup' in 'imported module bs4'
Cannot find reference 'Tk' in 'imported module tkinter'
运行程序时的实际输出是什么
<class 'bs4.BeautifulSoup'>
<class 'tkinter.Tk'>