WSL2: Difference between revisions

From Wiki
(Die Seite wurde neu angelegt: „<pre> Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux </pre>“)
 
No edit summary
Line 1: Line 1:
<pre>
<pre>
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
</pre>
== Running Linux Commands ==
* using bash.exe
<pre>
bash.exe -c "jupyter-notebook ; /bin/bash"
</pre>
* using wsl
<pre>
wsl jupyter-notebook &
</pre>
</pre>

Revision as of 10:51, 13 September 2018

Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux


Running Linux Commands

  • using bash.exe
bash.exe -c "jupyter-notebook ; /bin/bash"


  • using wsl
wsl jupyter-notebook &