--
You received this message because you are subscribed to the Google Groups "Plover" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ploversteno+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Maybe try replacing the quotes (") with apostrophes (') in the generated requirements.txt, does that solve the issue? If not, seems like it's just a regression that would need to be fixed by pip.
pip install --user -r requirements.txt
as suggested here: https://github.com/openstenoproject/plover/tree/master/linux
Note that I omit "-c requirements_constraints.txt" because that file does not exist in my folder after running
./setup.py write_requirements. Note also that I run "pip" instead of "pip2" (as suggested on that page), because when I run "pip2 install --user -r requirements.txt", I get the following error message:
Collecting wxPython>=3.0 (from -r requirements.txt (line 15))
Could not find a version that satisfies the requirement wxPython>=3.0 (from -r requirements.txt (line 15)) (from versions: )
No matching distribution found for wxPython>=3.0 (from -r requirements.txt (line 15))
It works with pip (not pip2) as mentioned above though. Now I'm able to run ./launch.sh and am eager to try out Plover for the first time! Yay!