Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #100635

Re: Installing PyCharm on Windows

From Chris Angelico <rosuav@gmail.com>
Newsgroups comp.lang.python
Subject Re: Installing PyCharm on Windows
Date 2015-12-21 08:54 +1100
Message-ID <mailman.6.1450648484.2237.python-list@python.org> (permalink)
References <mailman.11.1449433141.2247.python-list@python.org> <32971984.pfH099DPo1@PointedEars.de> <d0952394-9dff-4860-9ece-d632422dd3c5@googlegroups.com> <2632865.Kq7QuO2XSa@PointedEars.de> <52076a04-4803-4cd5-b86a-65d8fdc81aea@googlegroups.com>

Show all headers | View raw


On Mon, Dec 21, 2015 at 4:15 AM, Josef Pktd <josef.pktd@gmail.com> wrote:
>> Mine was not a snide remark, but the truth.  Those other operating systems I
>> was talking about do give users more freedom.  For example, the freedom to
>> use it on as many different machines as you like without an extra license,
>> to see the source code, to modify it, and to redistribute the modification
>> including an attribution to yourself.
>
> "Richtige Männer nehmen Pitralon"  everything else is "unreal"
>
> I'm writing BSD licensed software, but I never felt the urge to change more than a few options in the operating system, and was never interested in the "freedom" to fix the kernel (and I was never interested in fixing my car either).
>

That's true of me, too. I run Debian Linux on most of my systems, and
for the overwhelming majority of packages, I simply accept the
precompiled binary that's available from their repositories, rather
than tinkering with it myself. But the mere possibility that someone
recompile their own software forces authors and vendors to remain
honest; it's pretty useless adding in nagware or ads if anyone can
simply compile them out again. Plus, the general culture of GNU,
Linux, *BSD, and similar ecosystems means that when you *do* want to
compile your own software, it's really easy. Want to run CPython 3.6
on Windows? Go hunt down a compiler, fiddle around with it, and see if
you can get everything to work. Want to run CPython 3.6 on a Debian
system? It's probably as simple as:

$ sudo apt-get build-dep python3
$ sudo apt-get install mercurial
$ hg clone https://hg.python.org/cpython
$ cd cpython
$ make

Want to try out that interesting-looking patch off the bug tracker?
Same as the above, plus one little 'patch' command to apply the patch.
Either way, you end up with the main "python3" command still being the
one that Debian provided, and "./python" running the brand new one you
just built. (If you *do* want to replace your system-wide Python,
that's just one more command; but it's easy to keep them separate
until you're done testing.)

I'm not going to force anyone to abandon Windows, but freedom does
benefit even people who don't directly exercise it, so I would still
encourage people to consider a culture of freedom.

ChrisA

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

issues Anna Szaharcsuk <szaharcsuk@googlemail.com> - 2015-12-04 22:44 +0000
  Re: issues Paulo da Silva <p_s_d_a_s_i_l_v_a_ns@netcabo.pt> - 2015-12-18 22:19 +0000
  Installing PyCharm on Windows (was: issues) Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2015-12-19 19:32 +0100
    Re: Installing PyCharm on Windows (was: issues) Josef Pktd <josef.pktd@gmail.com> - 2015-12-19 20:32 -0800
      Re: Installing PyCharm on Windows Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2015-12-20 09:28 +0100
        Re: Installing PyCharm on Windows Steven D'Aprano <steve@pearwood.info> - 2015-12-20 20:23 +1100
          Re: Installing PyCharm on Windows Chris Angelico <rosuav@gmail.com> - 2015-12-20 20:57 +1100
        Re: Installing PyCharm on Windows Josef Pktd <josef.pktd@gmail.com> - 2015-12-20 09:15 -0800
          Re: Installing PyCharm on Windows Chris Angelico <rosuav@gmail.com> - 2015-12-21 08:54 +1100
          Re: Installing PyCharm on Windows Terry Reedy <tjreedy@udel.edu> - 2015-12-20 17:46 -0500
          Re: Installing PyCharm on Windows Chris Angelico <rosuav@gmail.com> - 2015-12-21 10:04 +1100
        Re: Installing PyCharm on Windows Erik <python@lucidity.plus.com> - 2015-12-20 21:21 +0000
  Re: issues wxjmfauth@gmail.com - 2015-12-20 01:27 -0800

csiph-web