简体   繁体   中英

Why does the pattern package fails to be imported in jupyter notebook yet it is already installed

I installed pattern3 in the cmd with: pip install pattern3

and it was successful I also installed in the jupyter notebook and still it was successful. However, when I try to import it with import patterns I get this error:

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
~\AppData\Local\Temp/ipykernel_2116/1948699844.py in <module>
----> 1 import patterns

ModuleNotFoundError: No module named 'patterns'

I think you have made a typo. The import statement for the pattern3 module would be import pattern3 , not import patterns .

If you have installed the pattern3 module correctly, you should be able to import it by using the new statement.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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