我已经使用pip命令安装了它们两个,并且显示它已安装,但无法正常工作。我还更新了pip的版本,但仍显示了更新pip的命令。
C:\Users\DELL>pip install win10toast
Requirement already satisfied: win10toast in c:\users\dell\appdata\local\programs\python\python37\lib\site-packages (0.9)
Requirement already satisfied: setuptools in c:\users\dell\appdata\local\programs\python\python37\lib\site-packages (from win10toast) (40.8.0)
Requirement already satisfied: pypiwin32 in c:\users\dell\appdata\local\programs\python\python37\lib\site-packages (from win10toast) (223)
Requirement already satisfied: pywin32>=223 in c:\users\dell\appdata\local\programs\python\python37\lib\site-packages (from pypiwin32->win10toast) (225)
You are using pip version 19.0.3, however version 19.2.3 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
C:\Users\DELL>cd C:\Users\DELL\desktop
C:\Users\DELL\Desktop>python test.py
Traceback (most recent call last):
File "test.py", line 3, in <module>
from win10toast import ToastNotifier
ModuleNotFoundError: No module named 'win10toast'
C:\Users\DELL\Desktop>pip install lxml
Requirement already satisfied: lxml in c:\users\dell\appdata\local\programs\python\python37\lib\site-packages (4.4.1)
You are using pip version 19.0.3, however version 19.2.3 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
C:\Users\DELL\Desktop>pip3 install lxml
Requirement already satisfied: lxml in c:\users\dell\appdata\local\programs\python\python37\lib\site-packages (4.4.1)
You are using pip version 19.0.3, however version 19.2.3 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
C:\Users\DELL\Desktop>python test.py
Traceback (most recent call last):
File "test.py", line 4, in <module>
soup = BeautifulSoup(source,'lxml')
File "C:\Users\DELL\AppData\Local\Programs\Python\Python37-32\lib\site-packages\bs4\__init__.py", line 196, in __init__
% ",".join(features))
bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: lxml. Do you need to install a parser library?
答案 0 :(得分:0)
我们来分解一下正在发生的事情:
pip install lxml
命令在文件夹"...python\python37\lib\site-packages..."
中导致了已经满足的错误pip3 install lxml
在文件夹"...python\python37\lib\site-packages..."
中导致已经满足的错误因此,您的pip
和pip3
都指向安装在其中的python
发行版
"...python\python37
,但是执行脚本时,bs4
是从"...Python\Python37-32\lib\site-packages..."
导入的(请注意, Python37-32 与指向pip
的路径不同至)。这使我相信您以某种方式并排安装了两个不同的python
,并且pip
和python
指向不同的安装,这会造成混乱。
在注释中,您说您已经安装了anaconda
,现在已经是第三个python
发行版。为了解决这个问题,我建议
python
的安装,然后确保"...Python\Python37-32\lib\site-packages..."
和"...python\python37\lib\site-packages..."
都已清空/清空python
pip
都指向您的anaconda
安装bs4
:conda install -c anaconda beautifulsoup4
和win10toast
:pip install win10toast
现在所有进口货物都可以正常运行