Python Forum
Why is Python so hard to maintain
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Why is Python so hard to maintain
#7
(Aug-15-2019, 03:08 PM)RMJFlack Wrote: Actually, doing ANYTHING in a command shell in a windows environment is not ease of use. This is not DOS!
That is up to interpretation. It probably just because you are not use to it. In Arch Linux for example, after you install the operating system. You have to install the desktop (IE. the GUI). And some people dont ever isntall a GUI as they consider it to be laggy. A lot of linux servers are terminal only. There is not need for GUI. One of the first things i do in Windows is bring up a command prompt to bypass the GUI.

(Aug-15-2019, 03:08 PM)RMJFlack Wrote: Having to edit PATH variable in Windows to manage multiple versions.
I havent used Windows much in years so i could not say. Although doing anything in Windows takes forever in comparison to linux. I hate being in that operating system as everything is more work involved.

(Aug-15-2019, 03:08 PM)RMJFlack Wrote: pip installing module in the wrong place (my Python37 not Python33)
That is because you invoked the python3.7 pip then. What reason do you have anyways of having all them installed? You can use a virtual environment to handle multiple python versions much easier.

(Aug-15-2019, 03:08 PM)RMJFlack Wrote: redefining the syntax of a basic function between versions (print for example)
print was converted to a function in python3.x. This is commonly well known at this point.
(Aug-15-2019, 03:08 PM)RMJFlack Wrote: redefining the type of the result of a library function between versions (struct.pack for example). very uncool.
One change between python3.x and python2.x was bytes and strings. Like with any language, if you are using C++14 syntax and try to compile it in a c++98 compiler you are going to get errors. The same is true with python2.x/python3.x interpreters.

The fact that you are referring to python3.x/2.x incompatibilities refers me to think that most of your issues are in conjunction with those versions. I would use a python3.x tutorial at this point for everything. Python2.x is dead soon.
Recommended Tutorials:
Reply


Messages In This Thread
Why is Python so hard to maintain - by RMJFlack - Aug-15-2019, 02:33 PM
RE: Why is Python so hard to maintain - by wavic - Aug-15-2019, 02:57 PM
RE: Why is Python so hard to maintain - by RMJFlack - Aug-15-2019, 03:08 PM
RE: Why is Python so hard to maintain - by metulburr - Aug-15-2019, 03:33 PM
RE: Why is Python so hard to maintain - by RMJFlack - Aug-15-2019, 03:42 PM
RE: Why is Python so hard to maintain - by snippsat - Aug-15-2019, 04:09 PM
RE: Why is Python so hard to maintain - by RMJFlack - Aug-15-2019, 04:16 PM
RE: Why is Python so hard to maintain - by buran - Aug-15-2019, 05:01 PM
RE: Why is Python so hard to maintain - by RMJFlack - Aug-15-2019, 05:48 PM
RE: Why is Python so hard to maintain - by buran - Aug-15-2019, 07:04 PM
RE: Why is Python so hard to maintain - by RMJFlack - Aug-15-2019, 10:30 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to Hire a Python Programmer? It's hard because I don't know pythonforumuser 1 1,709 Feb-10-2020, 12:02 PM
Last Post: metulburr
  how hard to translate this to python? Skaperen 4 4,042 Oct-18-2017, 07:37 AM
Last Post: buran
  Should Learn Python The Hard Way's be in the forums list of books Yoriz 16 14,606 Nov-09-2016, 05:47 PM
Last Post: micseydel

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020