rr- / pq-cli

Progress Quest: the CLI edition

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

I installed Python 3.8 and it won't work

aknight2015 opened this issue · comments

I'm running windows 10. I installed Python 3.8 from the store. I went into command line and typed pip install --user pqcli, everything went fine. I typed pqcli and it says that "pqcli is not recobnized as an internal or external command, operable program or batch file."

How can I fix this?

Try python3.8 -m pqcli

I get this.

Traceback (most recent call last):
File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.8_3.8.1520.0_x64__qbz5n2kfra8p0\lib\runpy.py", line 194, in run_module_as_main
return run_code(code, main_globals, None,
File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.8_3.8.1520.0_x64__qbz5n2kfra8p0\lib\runpy.py", line 87, in run_code
exec(code, run_globals)
File "C:\Users\Steve Rogers\pq-cli\pqcli_main
.py", line 8, in
from pqcli.ui.curses import CursesUserInterface
File "C:\Users\Steve Rogers\pq-cli\pqcli\ui\curses_init
.py", line 2, in
import curses
File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.8_3.8.1520.0_x64__qbz5n2kfra8p0\lib\curses_init.py", line 13, in
from _curses import *
ModuleNotFoundError: No module named '_curses'

For some reason your python doesn't think you're running Windows; try installing also pip install --user windows-curses

Can't say I completely blame it. It's working now.