0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

VSIXファイル取得方法

Posted at

背景

オフライン環境で VSCode で .ipynb ファイルを実行したい場面がありました。
オフライン環境で VSCode に Extensionを導入するために、VSIXファイルの取得が必要でした。

VSIXファイルの取得方法を備忘録として残しておきます

python extension

今回取得したVersionは 2024.6.0 になります

curl -L -o ms-python.python-2024.6.0.vsix https://ms-python.gallerycdn.vsassets.io/extensions/ms-python/python/2024.6.0/1687519431535/Microsoft.VisualStudio.Services.VSIXPackage

上記をコマンドプロンプトで実行すると python拡張用のVSIXファイルを取得できます
image.png

jupyter extension

今回取得したVersionは 2024.6.2024062601 になります

curl -L -o ms-toolsai.jupyter-2024.6.2024062601.vsix https://ms-toolsai.gallerycdn.vsassets.io/extensions/ms-toolsai/jupyter/2024.6.2024062601/1687519431535/Microsoft.VisualStudio.Services.VSIXPackage

上記をコマンドプロンプトで実行すると jupyter拡張用のVSIXファイルを取得できます
image.png

おわり

おわり

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?