Hello kcott,

You had already a lot of good suggestions, among them MSYS2 which is new to me and I want to explore too, so I just add a few considerations.

Strawberry Perl is an optimal choice: I'm happy with this since many years. I always opt for the portable edition which comes with portableshell.bat launcher that simply launch an appropriate ENV without messing with the system.

Obviously Windows has no a System Perl, but anyway using berrybrew can be useful to have different distro installed: personally I use a homegrown solution, still to be published, but the only important thing is (in case you need custom launchers) is to always prepend strawberry paths to everything: c:\strawberryXX\perl\site\bin; c:\strawberryXX\perl\bin; c:\strawberryXX\c\bin; ....

Personally, in my custom application, I use UnxUtils to have a bounch of friendly commands available in the prompt. Also gnuwin32 proved to be useful and robust. Dunno what you really intend with command line interpreter.

About git I use git CMD but I'm used to have a separate window for this.

CAVEAT as you left windows OSs at XP era you might be interested in new traps included in newer OSs. Mostly FileSystem Redirection. See this article, this post of mine this other one about registry Redirection and this one too. All this posts and others are available in my bibliotheca dedicated section.

In summation: if something is 32 bit you will be redirected, as you can see:

perl -v This is perl 5, version 28, subversion 0 (v5.28.0) built for MSWin32-x +86-multi-thread-64int perl -e "opendir my $dir,'c:/windows/system32'; my $files; while (my $ +ele= readdir($dir)){$files++ } print qq(found $files elements in syst +em32\n)" found 3001 elements in system32 perl -v This is perl 5, version 26, subversion 0 (v5.26.0) built for MSWin32-x +64-multi-thread perl -e "opendir my $dir,'c:/windows/system32'; my $files; while (my $ +ele= readdir($dir)){$files++ } print qq(found $files elements in syst +em32\n)" found 4576 elements in system32

L*

There are no rules, there are no thumbs..
Reinvent the wheel, then learn The Wheel; may be one day you reinvent one of THE WHEELS.

In reply to Re: Perl on Windows 10 by Discipulus
in thread Perl on Windows 10 by kcott

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.