We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 176661b commit 3798ac5Copy full SHA for 3798ac5
beets/ui/__init__.py
@@ -1858,6 +1858,14 @@ def main(args=None):
1858
"""Run the main command-line interface for beets. Includes top-level
1859
exception handlers that print friendly error messages.
1860
"""
1861
+ if "AppData\\Local\\Microsoft\\WindowsApps" in sys.exec_prefix:
1862
+ log.error(
1863
+ "error: beets is unable to use the Microsoft Store version of Python. Please install Python from python.org."
1864
+ )
1865
1866
+ "error: More details can be found here https://beets.readthedocs.io/en/stable/guides/main.html"
1867
1868
+ sys.exit(1)
1869
try:
1870
_raw_main(args)
1871
except UserError as exc:
0 commit comments