我正在使用 Windows 10、Python 3.6.4。我正在尝试使用模块 Pyperclip 并使用 pip 安装它:
c:\Users\Bertie>pip install pyperclip
Requirement already satisfired: pyperclip in c:\python36\lib\site-packages (1.8.0)
但是当我尝试运行一个使用这个模块的程序时,我得到了这个错误:
c:\Users\Bertie\scraping.py test
Traceback (most recent call last):
File "C:\Users\Bertie\scraping.py", line 3, in <module>
import webbrowser, sys, pyperclip
ModuleNotFoundError: No module named 'pyperclip'
我怎样才能解决这个问题?谢谢你。