This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
windows10 [2019/06/03 07:29] jdx |
windows10 [2021/09/23 16:59] (current) jdx [Install basic tools] |
||
---|---|---|---|
Line 3: | Line 3: | ||
===== Software ===== | ===== Software ===== | ||
You can find a list of tools to work under Windows 10 on the [[software-equivalents|Software equivalents]] page. | You can find a list of tools to work under Windows 10 on the [[software-equivalents|Software equivalents]] page. | ||
+ | |||
+ | If you need to test some functionalities of Windows on your machine, Microsoft delivers [[https:// | ||
===== PowerShell command line under Windows ===== | ===== PowerShell command line under Windows ===== | ||
Line 8: | Line 10: | ||
===== Linux development under Windows ===== | ===== Linux development under Windows ===== | ||
- | If you want to have a Linux development environment under Windows, you can set a [[windows10-vagrant|Vagrant configuration | + | If you want to have a Linux development environment under Windows, you can use the [[https:// |
+ | You may also prefer to work with Docker for Windows, with Linux support. | ||
===== Install package managers ===== | ===== Install package managers ===== | ||
<code bash> | <code bash> | ||
Line 17: | Line 20: | ||
# Scoop install (more " | # Scoop install (more " | ||
- | PS(Admin) > Set-ExecutionPolicy Bypass -Scope Process -Force; | + | PS(User) > iex (new-object net.webclient).downloadstring(' |
</ | </ | ||
===== Install basic tools ===== | ===== Install basic tools ===== | ||
<code bash> | <code bash> | ||
- | PS(Admin) > choco install -y git notepadplusplus cmder vscode vagrant virtualbox | + | PS(Admin) > |
+ | # for a new pc | ||
+ | choco install -y libreoffice | ||
+ | |||
+ | # for developers | ||
+ | choco install -y git cmder vscode vagrant virtualbox docker | ||
PS(Admin) > scoop install wget curl sudo ruby python | PS(Admin) > scoop install wget curl sudo ruby python |