Skip to content

Commit 731c11c

Browse files
authored
--use-pep517 when installing wheel for gltf plugin example (#1092)
1 parent bb29141 commit 731c11c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/source/user_guide/create_sites_for_python_operators.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Write-Host "activate venv"
1515

1616

1717
Write-Host "install deps"
18-
Start-Process "python" -ArgumentList ("-m pip install -r "+$pluginpath+"\requirements.txt --disable-pip-version-check") -NoNewWindow -Wait
18+
Start-Process "python" -ArgumentList ("-m pip install -r "+$pluginpath+"\requirements.txt --disable-pip-version-check --use-pep517") -NoNewWindow -Wait
1919
if (Test-Path ($tempfolder + "/venv/Lib/site-packages/__pycache__")){
2020
Write-Host "remove __pycache__"
2121
Remove-Item -Recurse -Force ($tempfolder + "/venv/Lib/site-packages/__pycache__")

docs/source/user_guide/create_sites_for_python_operators.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ echo "activate venv"
3939
source ${tempfolder}/venv/bin/activate
4040

4141
echo "install deps"
42-
python -m pip install -r ${pluginpath}/requirements.txt --disable-pip-version-check
42+
python -m pip install -r ${pluginpath}/requirements.txt --disable-pip-version-check --use-pep517
4343

4444
SITES=$(find ${tempfolder}/venv/ -type d -name "site-packages")
4545
echo "SITES"

0 commit comments

Comments
 (0)