When launching a build on Ubuntu 20, the package handler installation will immediately fail without pip or pyparsing installed. If the bootstrap script also fails, (which is also happening for some reason) the script currently crashes.
Even after manually installing pip, pyparsing does indeed get installed by CodeDog, but for some reason still fails to initialize before running the rest of the script:
../codeDog minimalGame.dog
Collecting pyparsing
Downloading pyparsing-3.0.9-py3-none-any.whl (98 kB)
|████████████████████████████████| 98 kB 2.3 MB/s
Installing collected packages: pyparsing
Successfully installed pyparsing-3.0.9
Traceback (most recent call last):
File "../codeDog", line 20, in <module>
import progSpec
File "/home/pyr0ball/devl/CodeDog/progSpec.py", line 8, in <module>
from pyparsing import ParseResults
ModuleNotFoundError: No module named 'pyparsing'
re-running the dog file after this failure will result in a success, however
When launching a build on Ubuntu 20, the package handler installation will immediately fail without pip or pyparsing installed. If the bootstrap script also fails, (which is also happening for some reason) the script currently crashes.
Even after manually installing pip, pyparsing does indeed get installed by CodeDog, but for some reason still fails to initialize before running the rest of the script:
re-running the dog file after this failure will result in a success, however