How to install pytest from source code? #9665
-
‘pip install pytest’ cannot be used because there is no Internet connection on the device, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Like any other Python project, something like However, that won't change much, as you still need pytest's dependencies. You might want to use |
Beta Was this translation helpful? Give feedback.
-
Just a small correction, |
Beta Was this translation helpful? Give feedback.
Like any other Python project, something like
pip install .
. See the packaging.python.org docs.However, that won't change much, as you still need pytest's dependencies. You might want to use
pip download pytest
and install from the resulting wheels, or perhaps use devpi as a caching proxy.