|
|
|
|
|
by flembat
529 days ago
|
|
Write your python, run script, find missing import.
Install missing import, find that you actually need a different version of python as the import does not understand the latest version yet.
Find that the import depends on various other imports, which python and the package manager, does not tell you it needs.
Downgrade your local python. (and lets not discuss managing multiple versions.)
Import library again and find you need to install a C compiler.
Install a c compiler.
Later find that the library is not compatible with your systems version of openssl.
And it turns out you now need a version of python that has some extra static code linked into it, because you need to display a simple GUI.
But you still need the GUI library as well. |
|
Python can be convenient, but often isn't. Just setting the path on my last install was annoying because Python got automatically installed by windows in a hard-to-find folder.
BASIC "just worked".