How can I install veros offline? #644
-
Beta Was this translation helpful? Give feedback.
Answered by
dionhaefner
Aug 27, 2024
Replies: 1 comment 1 reply
-
I'm guessing you need to use I guess you could do |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
sylenola
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm guessing you need to use
pip install -e .
instead if you're already in the veros folder. Not that it's going to do you much good though, since the dependencies are downloaded during install.I guess you could do
pip download veros
, then copy the downloaded wheels to an offline machine, and usepip install --no-index --find-links . veros
to install if you really need to do this.