Skip to content

Commit a8a17e0

Browse files
authored
DOCS: Fix vtk-osmesa install step (#445)
1 parent a49ee49 commit a8a17e0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ help:
2323
@echo "Removing vtk to avoid conflicts with vtk-osmesa needed for CI/CD"; \
2424
pip uninstall --yes vtk; \
2525
@echo "Installing vtk-osmesa"; \
26-
pip install --extra-index-url https://wheels.vtk.org vtk-osmesa==9.3.1; \
26+
pip install --index-url https://wheels.vtk.org vtk-osmesa==9.3.1; \
2727
fi
2828
@if [ "${ON_CI}" = "True" ] && [ "$$is_pypandoc_binary_installed" != "yes" ]; then \
2929
@echo "Removing pypandoc to avoid conflicts with pypandoc-binary needed for CI/CD"; \

doc/make.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if NOT "%is_vtk_osmesa_installed%" == "vtk-osmesa" if "%ON_CI%" == "true" (
2525
@ECHO ON
2626
echo "Installing vtk-osmesa"
2727
@ECHO OFF
28-
pip install --extra-index-url https://wheels.vtk.org vtk-osmesa==9.3.1)
28+
pip install --index-url https://wheels.vtk.org vtk-osmesa==9.3.1)
2929
for /f %%i in ('pip freeze ^| findstr /c:"pypandoc_binary"') do set is_pypandoc_binary_installed=%%i
3030
if NOT "%is_pypandoc_binary_installed%" == "pypandoc_binary" if "%ON_CI%" == "true" (
3131
@ECHO ON

0 commit comments

Comments
 (0)