Skip to content

Commit 411c0ee

Browse files
committed
ERROR_REFERECE.md: adding how to handle ModulNotFoundError
1 parent 5d0352d commit 411c0ee

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

ERROR_REFERENCE.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
## When an error occurred while installing packages with pip
2+
#### - `Requirement already satisfied: {package name}` but `ModuleNotFoundError` occurs when executing the code.
3+
- It's saying that the installation of the package on your computer is succcessfully done. But, the specific location where it's installed might not be as we intended.
4+
- Please check the path of the python kernel where the program is running and the one where the package is installed. They must be the same.
5+
6+
```
7+
where the program is running
8+
$ import sys
9+
$ print(sys.executable)
10+
11+
where the package is installed
12+
$ pip show {package name}
13+
```

0 commit comments

Comments
 (0)