lehrkraefte:sbt:informatik:glf22:python-environment

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
lehrkraefte:sbt:informatik:glf22:python-environment [2023/08/17 22:54]
Karlheinz Schubert
lehrkraefte:sbt:informatik:glf22:python-environment [2023/08/18 00:40] (current)
Karlheinz Schubert
Line 14: Line 14:
 === Vorschlag zu Code Extensions für das GLF Informatik === === Vorschlag zu Code Extensions für das GLF Informatik ===
  
 +Kopieren Sie das folgende File in das Verzeichnis ''c:\Users\IHRNAME\.vscode''
 +
 +<code json extensions.json>
 +{
 + // See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
 + // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
 + // List of extensions which should be recommended for users of this workspace.
 + "recommendations": [
 + "ms-python.isort",
 + "ms-python.python",
 + "ms-python.vscode-pylance",
 + "dphans.micropython-ide-vscode",     
 + "ev3dev.ev3dev-browser",
 + "James-Yu.latex-workshop",
 + "lego-education.ev3-micropython",      
 + "mechatroner.rainbow-csv",
 + "yzhang.markdown-all-in-one",
 + "cweijan.vscode-typora",
 + "yzane.markdown-pdf"
 + ],
 + // List of extensions recommended by VS Code that should not be recommended for users of this workspace.
 + "unwantedRecommendations": [
 + "ms-edgedevtools.vscode-edge-devtools",
 + "ms-vscode.notepadplusplus-keybindings"
 + ]
 +}
 +</code> 
 +Die vorgeschlagenen Erweiterungen stehen dann im Extension Pane unter <key>RECOMMANDED</key> zur Auswahl und Sie können diese installieren.
 +
 +<hidden Variante 2) Batchdatei zur automatischen Installation der Erweiterungen>
 <code bash code-extensions.cmd> <code bash code-extensions.cmd>
 @echo off @echo off
Line 44: Line 74:
 echo ======================================================= echo =======================================================
  
-</code>+</code></hidden>
  
-oder für Freaks in Python:+<hidden Variante 3) Für Python-FansInstallation für die Erweiterungen>
 <code python code-extensions.py> <code python code-extensions.py>
 """ """
Line 64: Line 94:
     'ms-python.python',     'ms-python.python',
     'ms-python.vscode-pylance',     'ms-python.vscode-pylance',
-    #  ------- jupyther --------------------------------------- 
-    'ms-toolsai.jupyter', 
-    'ms-toolsai.jupyter-keymap', 
-    'ms-toolsai.jupyter-renderers', 
     #  ------- ev3 lego roboter -------------------------------     #  ------- ev3 lego roboter -------------------------------
     'lego-education.ev3-micropython',     'lego-education.ev3-micropython',
Line 73: Line 99:
     #  ------- html, js development ---------------------------     #  ------- html, js development ---------------------------
     'firefox-devtools.vscode-firefox-debug',     'firefox-devtools.vscode-firefox-debug',
-    #  ------- embedded development --------------------------- 
-    'platformio.platformio-ide', 
-    'ms-vscode.cpptools', 
     #  ------- formatters -------------------------------------     #  ------- formatters -------------------------------------
     'lonefy.vscode-JS-CSS-HTML-formatter',     'lonefy.vscode-JS-CSS-HTML-formatter',
Line 92: Line 115:
  
 </code> </code>
 +</hidden>
 +
  • lehrkraefte/sbt/informatik/glf22/python-environment.1692305689.txt.gz
  • Last modified: 2023/08/17 22:54
  • by Karlheinz Schubert