-
In my tox tests, I would like to install pyvista from
(This is necessary because it provides a native VTK Python 3.10 wheel which VTK upstream doesn't yet.) How can I do this in my |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Is pyvista your only external dependency? I assume not 😉 |
Beta Was this translation helpful? Give feedback.
-
It is not like I needed that before but it should work like this:
Untested, but this should do. Alternatively you could use I am not near my laptop so both suggestions are untested. Please report back whether the one or the other solution worked. If not I'll try find a solution tomorrow. |
Beta Was this translation helpful? Give feedback.
It is not like I needed that before but it should work like this:
-r requirements.txt
Untested, but this should do.
Alternatively you could use
commands_pre
to install the single dependency viapython -m pip install...
.I am not near my laptop so both suggestions are untested.
Please report back whether the one or the other solution worked. If not I'll try find a solution tomorrow.