Skip to content

Commit cde0aee

Browse files
committed
Update Miniconda.ps1
1 parent 329c43f commit cde0aee

File tree

6 files changed

+63
-124
lines changed

6 files changed

+63
-124
lines changed

Anaconda/Anaconda.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ $ErrorActionPreference = 'Stop'
1111
[Net.ServicePointManager]::SecurityProtocol = 'tls12, tls11, tls'
1212
Push-Location $WorkingFolder
1313
chcp 65001
14-
$OutputEncoding = [System.Console]::OutputEncoding = [System.Console]::InputEncoding = [System.Text.Encoding]::GetEncoding('utf-8')
14+
#$OutputEncoding = [System.Console]::OutputEncoding = [System.Console]::InputEncoding = [System.Text.Encoding]::GetEncoding('utf-8')
15+
$OutputEncoding = [System.Text.Encoding]::GetEncoding('utf-8')
1516
$psBoundParameters.Keys | ForEach-Object {
1617
if ($($PSBoundParameters.$_.GetType().Name) -eq 'SwitchParameter') {
1718
$paramStrings += " -$_"

Anaconda/README-JP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
## インストールするソフトウェア
55
- [Anaconda](https://www.anaconda.com/)
66
- [Node.js](https://nodejs.org/) (JupyterLab拡張機能の要件)
7-
- [Jupyter-PowerShell5](https://github.com/DeepAQ/Jupyter-PowerShell5)
7+
- [Jupyter-PowerShell5](https://github.com/sakaztk/Jupyter-PowerShellSDK/tree/powershellsdk/Jupyter-PowerShell5) ([DeepAQ](https://github.com/DeepAQ/Jupyter-PowerShell5)からフォーク)
88
- [Jupyter-PowerShellSDK](https://github.com/sakaztk/Jupyter-PowerShellSDK) (オプション)
99
- [.Net Interactive](https://github.com/dotnet/interactive) (オプション)
1010

Anaconda/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Using [Powershell](https://github.com/PowerShell/PowerShell) on [Jupyter Noteboo
44
## Installing Softwares
55
- [Anaconda](https://www.anaconda.com/)
66
- [Node.js](https://nodejs.org/) (Use in extentions for JupyterLab)
7-
- [Jupyter-PowerShell5](https://github.com/DeepAQ/Jupyter-PowerShell5)
7+
- [Jupyter-PowerShell5](https://github.com/sakaztk/Jupyter-PowerShellSDK/tree/powershellsdk/Jupyter-PowerShell5) (forked from [DeepAQ](https://github.com/DeepAQ/Jupyter-PowerShell5))
88
- [Jupyter-PowerShellSDK](https://github.com/sakaztk/Jupyter-PowerShellSDK) (Optional)
99
- [.Net Interactive](https://github.com/dotnet/interactive) (Optional)
1010

Miniconda/Miniconda.ps1

Lines changed: 54 additions & 90 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ Param(
44
[String]$InstallationType = 'Computer',
55
[Switch]$InstallPwsh7SDK,
66
[Switch]$InstallDotnetInteractive,
7-
[Switch]$InstallNBExtensions,
8-
[Switch]$UsePipKernel,
97
[Switch]$CleanupDownloadFiles,
108
[String]$WorkingFolder = $PSScriptRoot
119
)
1210
$ErrorActionPreference = 'Stop'
1311
[Net.ServicePointManager]::SecurityProtocol = 'tls12, tls11, tls'
1412
Push-Location $WorkingFolder
13+
chcp 65001
14+
#$OutputEncoding = [System.Console]::OutputEncoding = [System.Console]::InputEncoding = [System.Text.Encoding]::GetEncoding('utf-8')
15+
$OutputEncoding = [System.Text.Encoding]::GetEncoding('utf-8')
1516
$psBoundParameters.Keys | ForEach-Object {
1617
if ($($PSBoundParameters.$_.GetType().Name) -eq 'SwitchParameter') {
1718
$paramStrings += " -$_"
@@ -32,15 +33,15 @@ switch ($installationType) {
3233
$dataPath = "$env:ProgramData"
3334
$kernelPath = Join-Path $env:ProgramData '\Miniconda3\share\jupyter\kernels'
3435
$packagePath = Join-Path $env:ProgramData '\Miniconda3\Lib\site-packages'
35-
$pyTypeOpt = '--sys-prefix'
36+
#$pyTypeOpt = '--sys-prefix'
3637
[System.Environment]::SetEnvironmentVariable('PYTHONUTF8',1,[System.EnvironmentVariableTarget]::Machine)
3738
}
3839
{ @('user', 'justme') -contains $_ } {
3940
$condaOpt = '/InstallationType=JustMe /AddToPath=0 /RegisterPython=1 /NoRegistru=0 /Noscripts=o /S'
4041
$dataPath = $env:UserProfile
4142
$kernelPath = Join-Path $env:AppData '\jupyter\kernels'
4243
$packagePath = Join-Path $env:USERPROFILE '\Miniconda3\Lib\site-packages'
43-
$pyTypeOpt = '--user'
44+
#$pyTypeOpt = '--user'
4445
[System.Environment]::SetEnvironmentVariable('PYTHONUTF8',1,[System.EnvironmentVariableTarget]::User)
4546
}
4647
default {
@@ -54,50 +55,37 @@ if ($ProgressPreference -ne 'SilentlyContinue') {
5455
$ProgressPreference = 'SilentlyContinue'
5556
}
5657

57-
Write-Verbose 'Downloading latest Miniconda...'
58+
Write-Host 'Downloading latest Miniconda...'
5859
$fileUri = 'https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe'
59-
Invoke-WebRequest -Uri $fileUri -UseBasicParsing -OutFile (Join-Path $WorkingFolder 'miniconda.exe') -Verbose
60-
61-
if ($InstallPwsh7ForPipKernel) {
62-
Write-Verbose 'Downloading latest PowerShell 7...'
63-
$releaseURI = 'https://github.com/PowerShell/PowerShell/releases'
64-
$latestRelease = (Invoke-WebRequest -Uri "$releaseURI/latest" -UseBasicParsing -Headers @{'Accept'='application/json'}| ConvertFrom-Json).update_url
65-
$versionString = $latestRelease -replace '.*tag/(.*)', '$1'
66-
$links = (Invoke-WebRequest -Uri "$releaseURI/expanded_assets/$($versionString)" -UseBasicParsing).Links.href
67-
$fileUri = 'https://github.com' + ($links | Select-String -Pattern '.*x64.msi' | Get-Unique).Tostring().Trim()
68-
Write-Verbose "Download from $fileUri"
69-
Invoke-WebRequest -Uri $fileUri -UseBasicParsing -OutFile (Join-Path $WorkingFolder 'pwsh.msi') -Verbose
70-
}
60+
Invoke-WebRequest -Uri $fileUri -UseBasicParsing -OutFile (Join-Path $WorkingFolder 'miniconda.exe') -Verbose:$VerbosePreference
7161

7262
if ($InstallDotnetInteractive) {
73-
Write-Verbose 'Downloading latest .NET SDK...'
63+
Write-Host 'Downloading latest .NET SDK...'
7464
$links = (Invoke-WebRequest -Uri 'https://dotnet.microsoft.com/download' -UseBasicParsing).Links.href
7565
$latestVer = (($links | Select-String -Pattern '.*sdk.*windows-x64-installer') -replace '.*sdk-(([0-9]+\.){1}[0-9]+(\.[0-9]+)?)-.*', '$1' | Measure-Object -Maximum).Maximum
7666
$latestUri = 'https://dotnet.microsoft.com' + ($links | Select-String -Pattern ".*sdk-$latestVer-windows-x64-installer" | Get-Unique).Tostring().Trim()
7767
$fileUri = ((Invoke-WebRequest -Uri $latestUri -UseBasicParsing).Links.href | Select-String -Pattern '.*\.exe' | Get-Unique).Tostring().Trim()
78-
Invoke-WebRequest -Uri $fileUri -UseBasicParsing -OutFile (Join-Path $WorkingFolder 'dotnet.exe') -Verbose
68+
Invoke-WebRequest -Uri $fileUri -UseBasicParsing -OutFile (Join-Path $WorkingFolder 'dotnet.exe') -Verbose:$VerbosePreference
7969
}
8070
else {
81-
Write-Verbose 'Downloading latest .NET Runtime...'
71+
Write-Host 'Downloading latest .NET Runtime...'
8272
$links = (Invoke-WebRequest -Uri 'https://dotnet.microsoft.com/en-us/download/dotnet/8.0/runtime' -UseBasicParsing).Links.href
8373
$latestVer = (($links | Select-String -Pattern '.*runtime.*windows-x64-installer') -replace '.*runtime-(([0-9]+\.){1}[0-9]+(\.[0-9]+)?)-.*', '$1' | Measure-Object -Maximum).Maximum
8474
$latestUri = 'https://dotnet.microsoft.com' + ($links | Select-String -Pattern ".*runtime-$latestVer-windows-x64-installer" | Get-Unique).Tostring().Trim()
8575
$fileUri = ((Invoke-WebRequest -Uri $latestUri -UseBasicParsing).Links.href | Select-String -Pattern '.*\.exe' | Get-Unique).Tostring().Trim()
86-
Invoke-WebRequest -Uri $fileUri -UseBasicParsing -OutFile (Join-Path $WorkingFolder 'dotnet.exe') -Verbose
76+
Invoke-WebRequest -Uri $fileUri -UseBasicParsing -OutFile (Join-Path $WorkingFolder 'dotnet.exe') -Verbose:$VerbosePreference
8777
}
8878

89-
if (-not($UsePipKernel)) {
90-
$releaseURI = 'https://github.com/sakaztk/Jupyter-PowerShellSDK/releases'
91-
$latestRelease = (Invoke-WebRequest -Uri "$releaseURI/latest" -UseBasicParsing -Headers @{'Accept'='application/json'}| ConvertFrom-Json).update_url
92-
$versionString = $latestRelease -replace '.*tag/(.*)', '$1'
93-
$links = (Invoke-WebRequest -Uri "$releaseURI/expanded_assets/$($versionString)" -UseBasicParsing).Links.href
94-
Write-Verbose 'Downloading latest DeepAQ pwsh5 Kernel...'
95-
$fileUri = 'https://github.com' + ( $links | Select-String -Pattern '.*PowerShell5.zip' | Get-Unique).Tostring().Trim()
96-
Invoke-WebRequest -uri $fileUri -UseBasicParsing -OutFile (Join-Path $WorkingFolder 'PowerShell5.zip') -Verbose
97-
Write-Verbose 'Downloading latest DeepAQ pwshSDK Kernel...'
98-
$fileUri = 'https://github.com' + ( $links | Select-String -Pattern 'Jupyter-PowerShellSDK-7.*\.zip' | Get-Unique).Tostring().Trim()
99-
Invoke-WebRequest -uri $fileUri -UseBasicParsing -OutFile (Join-Path $WorkingFolder 'PowerShellSDK.zip') -Verbose
100-
}
79+
$releaseURI = 'https://github.com/sakaztk/Jupyter-PowerShellSDK/releases'
80+
$latestRelease = (Invoke-WebRequest -Uri "$releaseURI/latest" -UseBasicParsing -Headers @{'Accept'='application/json'}| ConvertFrom-Json).update_url
81+
$versionString = $latestRelease -replace '.*tag/(.*)', '$1'
82+
$links = (Invoke-WebRequest -Uri "$releaseURI/expanded_assets/$($versionString)" -UseBasicParsing).Links.href
83+
Write-Host 'Downloading latest DeepAQ pwsh5 Kernel...'
84+
$fileUri = 'https://github.com' + ( $links | Select-String -Pattern '.*PowerShell5.zip' | Get-Unique).Tostring().Trim()
85+
Invoke-WebRequest -uri $fileUri -UseBasicParsing -OutFile (Join-Path $WorkingFolder 'PowerShell5.zip') -Verbose:$VerbosePreference
86+
Write-Host 'Downloading latest DeepAQ pwshSDK Kernel...'
87+
$fileUri = 'https://github.com' + ( $links | Select-String -Pattern 'Jupyter-PowerShellSDK-7.*\.zip' | Get-Unique).Tostring().Trim()
88+
Invoke-WebRequest -uri $fileUri -UseBasicParsing -OutFile (Join-Path $WorkingFolder 'PowerShellSDK.zip') -Verbose:$VerbosePreference
10189

10290
if ($null -ne $exProgressPreference) {
10391
Write-Verbose "Restore $ProgressPreference to $exProgressPreference"
@@ -128,79 +116,55 @@ conda install -y notebook
128116
conda install -y jupyterlab
129117
conda install -y -c conda-forge nodejs
130118

131-
if ($InstallNBExtensions) {
132-
conda install -y -c conda-forge jupyter_nbextensions_configurator
133-
jupyter nbextensions_configurator enable
134-
pip install https://github.com/ipython-contrib/jupyter_contrib_nbextensions/tarball/master
135-
jupyter contrib nbextension install $pyTypeOpt
136-
}
137-
if ($UsePipKernel) {
138-
pip install powershell_kernel
139-
python -m powershell_kernel.install $pyTypeOpt
140-
if ($InstallPwsh7ForPipKernel) {
141-
Write-Verbose 'Installing PowerShell 7...'
142-
Start-Process -FilePath 'pwsh.msi' -ArgumentList '/passive' -Wait
143-
Copy-Item -Path "$kernelPath\powershell" -Destination "$kernelPath\powershell7" -Recurse -Force
144-
$fileContent = Get-Content "$kernelPath\powershell7\kernel.json" -Raw
145-
$fileContent = $filecontent -replace '"display_name": "[^"]*"','"display_name": "PowerShell 7"'
146-
$fileContent = $filecontent -replace '"powershell_command": "[^"]*"',"`"powershell_command`": `"pwsh.exe`""
147-
$filecontent | Set-Content "$kernelPath\powershell7\kernel.json"
148-
if ($CleanupDownloadFiles) {
149-
Start-Sleep -Seconds 5
150-
Remove-Item 'pwsh.msi' -Force
151-
}
152-
}
153-
}
154-
else {
155-
Write-Verbose 'Installing DeepAQ pwsh5 Kernel...'
156-
$installPath = Join-Path $packagePath 'powershell5_kernel'
157-
Expand-Archive -Path (Join-Path $WorkingFolder 'PowerShell5.zip') -DestinationPath $installPath -Force
158-
New-Item -ItemType Directory -Path (Join-Path $kernelPath '\powershell5\') -Force
159-
Invoke-WebRequest -UseBasicParsing -Verbose -Uri 'https://raw.githubusercontent.com/PowerShell/PowerShell/master/assets/Powershell_64.png' -OutFile (Join-Path $kernelPath '\powershell5\logo-64x64.png')
160-
Add-Type -AssemblyName System.Drawing
161-
$image = [System.Drawing.Image]::FromFile((Join-Path $kernelPath '\powershell5\logo-64x64.png'))
162-
$bitmap32 = New-Object System.Drawing.Bitmap(32, 32)
163-
[System.Drawing.Graphics]::FromImage($bitmap32).DrawImage($image, 0, 0, 32, 32)
164-
$bitmap32.Save((Join-Path $kernelPath '\powershell5\logo-32x32.png'), [System.Drawing.Imaging.ImageFormat]::Png)
119+
Write-Verbose 'Installing DeepAQ pwsh5 Kernel...'
120+
$installPath = Join-Path $packagePath 'powershell5_kernel'
121+
Expand-Archive -Path (Join-Path $WorkingFolder 'PowerShell5.zip') -DestinationPath $installPath -Force
122+
New-Item -ItemType Directory -Path (Join-Path $kernelPath '\powershell5\') -Force
123+
Invoke-WebRequest -UseBasicParsing -Verbose -Uri 'https://raw.githubusercontent.com/PowerShell/PowerShell/master/assets/Powershell_64.png' -OutFile (Join-Path $kernelPath '\powershell5\logo-64x64.png')
124+
Add-Type -AssemblyName System.Drawing
125+
$image = [System.Drawing.Image]::FromFile((Join-Path $kernelPath '\powershell5\logo-64x64.png'))
126+
$bitmap32 = New-Object System.Drawing.Bitmap(32, 32)
127+
[System.Drawing.Graphics]::FromImage($bitmap32).DrawImage($image, 0, 0, 32, 32)
128+
$bitmap32.Save((Join-Path $kernelPath '\powershell5\logo-32x32.png'), [System.Drawing.Imaging.ImageFormat]::Png)
165129
@"
166130
{
167-
"argv": [
168-
"$($installPath.replace('\','/'))/Jupyter_PowerShell5.exe",
169-
"{connection_file}"
170-
],
171-
"display_name": "PowerShell 5",
172-
"language": "Powershell"
131+
"argv": [
132+
"$($installPath.replace('\','/'))/Jupyter_PowerShell5.exe",
133+
"{connection_file}"
134+
],
135+
"display_name": "PowerShell 5",
136+
"language": "Powershell"
173137
}
174138
"@ | Set-Content -Path (Join-Path $kernelPath '\powershell5\kernel.json')
175-
Move-Item -Path (Join-Path $installPath '*.png') -Destination (Join-Path $kernelPath '\powershell5\') -Force
176-
if ($CleanupDownloadFiles) {
177-
Remove-Item (Join-Path $WorkingFolder 'PowerShell5.zip') -Force
178-
}
139+
Move-Item -Path (Join-Path $installPath '*.png') -Destination (Join-Path $kernelPath '\powershell5\') -Force -Verbose:$VerbosePreference
140+
if ($CleanupDownloadFiles) {
141+
Remove-Item (Join-Path $WorkingFolder 'PowerShell5.zip') -Force -Verbose:$VerbosePreference
179142
}
143+
180144
if ($InstallPwsh7SDK) {
181145
Write-Verbose 'Installing DeepAQ pwshSDK Kernel...'
182146
$installPath = Join-Path $packagePath 'powershellSDK_kernel'
183-
Expand-Archive -Path (Join-Path $WorkingFolder 'PowerShellSDK.zip') -DestinationPath $installPath -Force
184-
New-Item -ItemType Directory -Path (Join-Path $kernelPath '\powershellSDK\') -Force
185-
Invoke-WebRequest -UseBasicParsing -Verbose -Uri 'https://raw.githubusercontent.com/PowerShell/PowerShell/master/assets/Powershell_black_64.png' -OutFile (Join-Path $kernelPath '\powershellSDK\logo-64x64.png')
147+
Expand-Archive -Path (Join-Path $WorkingFolder 'PowerShellSDK.zip') -DestinationPath $installPath -Force -Verbose:$VerbosePreference
148+
New-Item -ItemType Directory -Path (Join-Path $kernelPath '\powershellSDK\') -Force -Verbose:$VerbosePreference
149+
Invoke-WebRequest -UseBasicParsing -Uri 'https://raw.githubusercontent.com/PowerShell/PowerShell/master/assets/Powershell_black_64.png' -OutFile (Join-Path $kernelPath '\powershellSDK\logo-64x64.png') -Verbose:$VerbosePreference
186150
Add-Type -AssemblyName System.Drawing
187151
$image = [System.Drawing.Image]::FromFile((Join-Path $kernelPath '\powershellSDK\logo-64x64.png'))
188152
$bitmap32 = New-Object System.Drawing.Bitmap(32, 32)
189153
[System.Drawing.Graphics]::FromImage($bitmap32).DrawImage($image, 0, 0, 32, 32)
190154
$bitmap32.Save((Join-Path $kernelPath '\powershellSDK\logo-32x32.png'), [System.Drawing.Imaging.ImageFormat]::Png)
191155
@"
192156
{
193-
"argv": [
194-
"$($installPath.replace('\','/'))/Jupyter_PowerShellSDK.exe",
195-
"{connection_file}"
196-
],
197-
"display_name": "PowerShell 7 (SDK)",
198-
"language": "Powershell"
157+
"argv": [
158+
"$($installPath.replace('\','/'))/Jupyter_PowerShellSDK.exe",
159+
"{connection_file}"
160+
],
161+
"display_name": "PowerShell 7 (SDK)",
162+
"language": "Powershell"
199163
}
200164
"@ | Set-Content -Path (Join-Path $kernelPath '\powershellSDK\kernel.json')
201-
Move-Item -Path (Join-Path $installPath '*.png') -Destination (Join-Path $kernelPath '\powershellSDK\') -Force
165+
Move-Item -Path (Join-Path $installPath '*.png') -Destination (Join-Path $kernelPath '\powershellSDK\') -Force -Verbose:$VerbosePreference
202166
if ($CleanupDownloadFiles) {
203-
Remove-Item (Join-Path $WorkingFolder 'PowerShellSDK.zip') -Force
167+
Remove-Item (Join-Path $WorkingFolder 'PowerShellSDK.zip') -Force -Verbose:$VerbosePreference
204168
}
205169
}
206170

@@ -213,15 +177,15 @@ if ($InstallDotnetInteractive) {
213177
dotnet interactive jupyter install --path "$kernelPath"
214178
if ($CleanupDownloadFiles) {
215179
Start-Sleep -Seconds 5
216-
Remove-Item 'dotnet.exe' -Force
180+
Remove-Item 'dotnet.exe' -Force -Verbose:$VerbosePreference
217181
}
218182
}
219183
elseif ($InstallPwsh7SDK) {
220184
Write-Verbose 'Installing .NET Runtime...'
221185
Start-Process -FilePath (Join-Path $WorkingFolder 'dotnet.exe') -ArgumentList '/install /passive /norestart' -Wait
222186
if ($CleanupDownloadFiles) {
223187
Start-Sleep -Seconds 5
224-
Remove-Item (Join-Path $WorkingFolder 'dotnet.exe') -Force
188+
Remove-Item (Join-Path $WorkingFolder 'dotnet.exe') -Force -Verbose:$VerbosePreference
225189
}
226190
}
227191

Miniconda/README-JP.md

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,9 @@
33

44
## インストールするソフトウェア
55
- [Miniconda](https://docs.conda.io/en/latest/miniconda.html)
6-
- [Jupyter-PowerShell5](https://github.com/DeepAQ/Jupyter-PowerShell5)
7-
- [Jupyter-PowerShellSDK](https://github.com/sakaztk/Jupyter-PowerShellSDK) (オプション)
8-
- [Jupyter Powershell Kernel](https://github.com/vors/jupyter-powershell) (オプション)
96
- [Node.js](https://nodejs.org/) (Use in extentions for JupyterLab)
10-
- [PowerShell 7](https://github.com/PowerShell/PowerShell) (オプション)
11-
- [Jupyter Nbextensions](https://github.com/ipython-contrib/jupyter_contrib_nbextensions) (Optional)
12-
- [Jupyter Nbextensions Configurator](https://github.com/Jupyter-contrib/jupyter_nbextensions_configurator) (オプション)
7+
- [Jupyter-PowerShell5](https://github.com/sakaztk/Jupyter-PowerShellSDK/tree/powershellsdk/Jupyter-PowerShell5) ([DeepAQ](https://github.com/DeepAQ/Jupyter-PowerShell5)からフォーク)
8+
- [Jupyter-PowerShellSDK](https://github.com/sakaztk/Jupyter-PowerShellSDK) (オプション)
139
- [.Net Interactive](https://github.com/dotnet/interactive) (オプション)
1410

1511
## インストール方法
@@ -22,19 +18,10 @@
2218
デフォルト: Computer
2319
例: .\Miniconda.ps1 -InstallationType User
2420

25-
- UsePipKernel
26-
このスイッチオプションを指定すると、[Jupyter-PowerShell5](https://github.com/DeepAQ/Jupyter-PowerShell5)の代わりに[Jupyter Powershell Kernel](https://github.com/vors/jupyter-powershell)を使用します。
27-
例: .\WinPython.ps1 -UsePipKernel
28-
2921
- InstallPwsh7SDK
3022
このスイッチオプションを指定すると、 [Jupyter-PowerShellSDK](https://github.com/sakaztk/Jupyter-PowerShellSDK)をインストールします。
3123
例: .\Anaconda.ps1 -InstallPwsh7SDK
3224

33-
- InstallNBExtensions
34-
このスイッチオプションを指定すると、 [Jupyter Nbextensions](https://github.com/ipython-contrib/jupyter_contrib_nbextensions)[Jupyter Nbextensions Configurator](https://github.com/Jupyter-contrib/jupyter_nbextensions_configurator)をインストールします。
35-
[Note] インストールすることでJupyterLabのエクスポート機能が使えなくなる可能性があります。([*](https://github.com/jupyterlab/jupyterlab-desktop/issues/465))
36-
例: .\Miniconda.ps1 -InstallNBExtensions
37-
3825
- InstallDotnetInteractive
3926
このスイッチオプションを指定すると、[.Net Interactive](https://github.com/dotnet/interactive)をインストールします。
4027
例: .\Miniconda.ps1 -InstallDotnetInteractive

0 commit comments

Comments
 (0)