<div dir="ltr">On my Arch linux, it is really easy to install D.<div><br></div><div>pacaur -Sy dlang // install dmd, ldc, and some other d tools</div><div>pacaur -Sy visual-studio-code // install visual studio code, then I just install plugins from vscode</div><div><br></div><div>So I can't see how this could be easier</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Oct 27, 2017 at 11:09 AM, Bo via Digitalmars-d <span dir="ltr"><<a href="mailto:digitalmars-d@puremagic.com" target="_blank">digitalmars-d@puremagic.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Friday, 27 October 2017 at 05:20:05 UTC, codephantom wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
That's it!<br>
<br>
I've had enough!<br>
<br>
4 hours wasted!<br>
</blockquote>
<br></span>
Please try getting some editors going for D on Windows like Visual Studio Code or Atom. That time wasted will skyrocket even more when you run into one of the many issues.<br>
<br>
Linux installation is not much better.<br>
<br>
Brew ... took a hour to install but only had dmd not dub for some reason.<br>
<br>
The install script on the website:<br>
<br>
curl -fsS <a href="https://dlang.org/install.sh" rel="noreferrer" target="_blank">https://dlang.org/install.sh</a> | bash -s dmd<br>
<br>
Well, that forces people to use:<br>
<br>
source ~/dlang/dmd-2.076.1/activate<br>
<br>
Each time they want to work with D. And it does not play nice with WSL because it never gets loaded so trying to access dmd from outside the WSL does not work.<br>
<br>
Download the Ubuntu/Debian deb file ... well, you better have google near you. How hard is it to have "sudo dpkg -i DEB_PACKAGE" as a instruction clearly on the website instead of only the deb file link... :)<br>
<br>
Or write in clear way simply:<br>
<br>
wget <a href="http://downloads.dlang.org/releases/2.x/2.076.1/dmd_2.076.1-0_amd64.deb" rel="noreferrer" target="_blank">http://downloads.dlang.org/rel<wbr>eases/2.x/2.076.1/dmd_2.076.1-<wbr>0_amd64.deb</a><br>
sudo dpkg -i dmd_2.076.1-0_amd64.deb<br>
</blockquote></div><br></div>