Pardon my elementary question. I'm trying to install the latest LDC on ubuntu. Not sure what exactly I need to do. sudo apt get/install ldc2 doesn't work. Downloaded the binary ldc2-1.35.0-linux-x86_64.tar.xz to Windows.
Thanks for any assistance.
Thread overview | |||||||
---|---|---|---|---|---|---|---|
|
October 19, 2023 LDC2 install in Win / WSL2 / Ubuntu | ||||
---|---|---|---|---|
| ||||
Pardon my elementary question. I'm trying to install the latest LDC on ubuntu. Not sure what exactly I need to do. sudo apt get/install ldc2 doesn't work. Downloaded the binary ldc2-1.35.0-linux-x86_64.tar.xz to Windows. Thanks for any assistance. |
October 19, 2023 Re: LDC2 install in Win / WSL2 / Ubuntu | ||||
---|---|---|---|---|
| ||||
Posted in reply to Paul | On Thursday, 19 October 2023 at 13:27:58 UTC, Paul wrote: >Pardon my elementary question. I'm trying to install the latest LDC on ubuntu. Not sure what exactly I need to do. sudo apt get/install ldc2 doesn't work. Downloaded the binary ldc2-1.35.0-linux-x86_64.tar.xz to Windows. Thanks for any assistance. Just run this and follow the instructions: |
October 19, 2023 Re: LDC2 install in Win / WSL2 / Ubuntu | ||||
---|---|---|---|---|
| ||||
Posted in reply to Paul | On Thursday, 19 October 2023 at 13:27:58 UTC, Paul wrote: >Pardon my elementary question. I'm trying to install the latest LDC on ubuntu. Not sure what exactly I need to do. sudo apt get/install ldc2 doesn't work. Downloaded the binary ldc2-1.35.0-linux-x86_64.tar.xz to Windows. Thanks for any assistance. mkdir -p ~/dlang && wget https://dlang.org/install.sh -O ~/dlang/install.sh /home/lu/dlang/install.sh 100%[===========================================>] 37.07K --.-KB/s in 0.04s 2023-10-19 10:04:27 (865 KB/s) - ‘/home/lu/dlang/install.sh’ saved [37956/37956] lu@DESKTOP-AOB2J65:~$ ~/dlang/install.sh install ldc lu@DESKTOP-AOB2J65:~$ ./dlang/install.sh install ldc |
October 19, 2023 Re: LDC2 install in Win / WSL2 / Ubuntu | ||||
---|---|---|---|---|
| ||||
Posted in reply to Imperatorn | On Thursday, 19 October 2023 at 13:54:45 UTC, Imperatorn wrote: >On Thursday, 19 October 2023 at 13:27:58 UTC, Paul wrote: >Pardon my elementary question. I'm trying to install the latest LDC on ubuntu. Not sure what exactly I need to do. sudo apt get/install ldc2 doesn't work. Downloaded the binary ldc2-1.35.0-linux-x86_64.tar.xz to Windows. Thanks for any assistance. Just run this and follow the instructions: Thanks Imperatorn! |
October 21, 2023 Re: LDC2 install in Win / WSL2 / Ubuntu | ||||
---|---|---|---|---|
| ||||
Posted in reply to Paul | On Thursday, 19 October 2023 at 13:27:58 UTC, Paul wrote: >Pardon my elementary question. I'm trying to install the latest LDC on ubuntu. Not sure what exactly I need to do. sudo apt get/install ldc2 doesn't work. Downloaded the binary ldc2-1.35.0-linux-x86_64.tar.xz to Windows. Thanks for any assistance. sudo apt install ldc (not ldc2) And yes, it works, because I have a Windows 11 laptop running ldc in WSL. |