Closed MahmoudDolah closed 6 years ago
Colorama isn't installed via pip because on Debian/Ubuntu systems we prefer to use the system's package manager rather than Python's; particularly since we're installing things systemwide this makes it easier to uninstall things later and helps prevent package conflicts.
I guess the situation you're trying to address is that you already had a version installed via pip
and you want it to use that rather than trying to install one via apt?
Also as a side note: I think you will have further trouble with 18.04 because we depend on versions of LLVM/clang that are no longer available in 18.04...
Colorama isn't installed via pip because on Debian/Ubuntu systems we prefer to use the system's package manager rather than Python's; particularly since we're installing things systemwide this makes it easier to uninstall things later and helps prevent package conflicts
Ah, okay. I understand now, I'll close this PR
Also as a side note: I think you will have further trouble with 18.04 because we depend on versions of LLVM/clang that are no longer available in 18.04...
Yeah, I came across this, as well
Tried building this on Ubuntu 18.04 and got an import error for
python-colorama
Uses try statement to check if import fails, then will install python-colorama package using apt-get Implementation ref here
Side question: Is there a reason colorama isn't installed with pip?