Skip to content

Commit 0b88162

Browse files
authored
fix
1 parent a63c829 commit 0b88162

1 file changed

Lines changed: 4 additions & 11 deletions

File tree

.github/workflows/init-python.yml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,9 @@ jobs:
2929
3030
- name: Python Embeddable Setup Dependencies
3131
run: |
32-
.\Python\Python.exe -m pip install \
33-
pandas \
34-
numpy \
35-
matplotlib \
36-
seaborn \
37-
scikit-learn \
38-
openpyxl \
39-
xlrd \
40-
ipykernel \
41-
jupyterlab
32+
# PowerShell 上では行末のバックスラッシュ (\) は行継続に使えないため、
33+
# パッケージは1行で指定するか、PowerShell の継続文字(バッククォート `)を正しく使う必要がある。
34+
.\Python\Python.exe -m pip install pandas numpy matplotlib seaborn scikit-learn openpyxl xlrd ipykernel jupyterlab
4235
4336
- name: Compress Python
4437
run: Compress-Archive -Path .\Python\* -DestinationPath .\Python_Embeddable.zip
@@ -62,4 +55,4 @@ jobs:
6255
./Python_Embeddable.zip
6356
make_latest: true
6457
env:
65-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
58+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)