Created
January 7, 2020 21:02
-
-
Save altendky/46f3276dd809cdff47b0b31b77b0e2cc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~ master ● python3.8 x.py | |
Traceback (most recent call last): | |
File "x.py", line 3, in <module> | |
import pylib.preferences as pref | |
ModuleNotFoundError: No module named 'pylib' | |
During handling of the above exception, another exception occurred: | |
Traceback (most recent call last): | |
File "x.py", line 7, in <module> | |
import polychromatic.preferences as pref | |
ModuleNotFoundError: No module named 'polychromatic' | |
✘ ~ master ● python3.7 x.py | |
Traceback (most recent call last): | |
File "x.py", line 3, in <module> | |
import pylib.preferences as pref | |
ModuleNotFoundError: No module named 'pylib' | |
During handling of the above exception, another exception occurred: | |
Traceback (most recent call last): | |
File "x.py", line 7, in <module> | |
import polychromatic.preferences as pref | |
ModuleNotFoundError: No module named 'polychromatic' | |
✘ ~ master ● python3.6 x.py | |
Traceback (most recent call last): | |
File "x.py", line 3, in <module> | |
import pylib.preferences as pref | |
ModuleNotFoundError: No module named 'pylib' | |
During handling of the above exception, another exception occurred: | |
Traceback (most recent call last): | |
File "x.py", line 7, in <module> | |
import polychromatic.preferences as pref | |
ModuleNotFoundError: No module named 'polychromatic' | |
✘ ~ master ● python3.5 x.py | |
Traceback (most recent call last): | |
File "x.py", line 3, in <module> | |
import pylib.preferences as pref | |
ImportError: No module named 'pylib' | |
During handling of the above exception, another exception occurred: | |
Traceback (most recent call last): | |
File "x.py", line 7, in <module> | |
import polychromatic.preferences as pref | |
ImportError: No module named 'polychromatic' | |
✘ ~ master ● python2.7 x.py | |
Traceback (most recent call last): | |
File "x.py", line 7, in <module> | |
import polychromatic.preferences as pref | |
ImportError: No module named polychromatic.preferences |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment