Skip to content

Instantly share code, notes, and snippets.

@altendky
Created January 7, 2020 21:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save altendky/46f3276dd809cdff47b0b31b77b0e2cc to your computer and use it in GitHub Desktop.
Save altendky/46f3276dd809cdff47b0b31b77b0e2cc to your computer and use it in GitHub Desktop.
~   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