Places to Find Extensoins¶
Visual Studio Code Marketplace and Open VSX Registry are 2 places to find VSCode compatible extensions.
Install VSCode Extensions from Command-line¶
Install Code-Server Extensions from Command-line¶
If you install extension in Dockerfile using root,
the extensions are installed into /root/.local/share/code-server/extensions.
You change the the permissions of /root and all its subcontents to 777
(using the command chmod -R 777 /root)
so that other users can use the installed extensions.
:::bash
code-server --install-extension ms-python.python
code-server --install-extension njpwerner.autodocstringYou can install a specific version of an extension using @.
:::bash
code-server --install-extension ms-python.python@2020.5.86806 \Generally Useful Extensions¶
Useful Extensions for Python¶
Python Docstring Generator Thhe sphinx style is recommended.