We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a63c829 commit 0b88162Copy full SHA for 0b88162
1 file changed
.github/workflows/init-python.yml
@@ -29,16 +29,9 @@ jobs:
29
30
- name: Python Embeddable Setup Dependencies
31
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
+ # PowerShell 上では行末のバックスラッシュ (\) は行継続に使えないため、
+ # パッケージは1行で指定するか、PowerShell の継続文字(バッククォート `)を正しく使う必要がある。
+ .\Python\Python.exe -m pip install pandas numpy matplotlib seaborn scikit-learn openpyxl xlrd ipykernel jupyterlab
42
43
- name: Compress Python
44
run: Compress-Archive -Path .\Python\* -DestinationPath .\Python_Embeddable.zip
@@ -62,4 +55,4 @@ jobs:
62
55
./Python_Embeddable.zip
63
56
make_latest: true
64
57
env:
65
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
58
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments