|
|
|
|
|
by andresgaitan
1524 days ago
|
|
>>Python is such a mess, most likely the script you wrote won't work on a coworker's machine. Either it accidentally needs some global package installed, and then if course the needed version interfers with something else. Or the script only works for certain versions of python etc. So true. You have to be very careful when writing python, because cool language idioms that you use (or function calls), may not have been introduced in say for example Python 3.5. So when someone runs it with a different interpreter it will not work. Writing python scripts that not-python-knowing people could use, is an art. Instead, I work for a company who's core was written in bash and perl, and those scripts still work today after 15 years. |
|
[1] https://python-poetry.org/