0

I wish to install connexion for swagger on a Ubuntu server that DOES NOT have internet access.

I wish to run

pip install connexion[swagger-ui]

Can I somehow download this repro (via another machine that does have internet access) and install/copy it locally and then install it that way?

If so, how?

Hugo y
  • 1,421
  • 10
  • 20
Harry Boy
  • 4,159
  • 17
  • 71
  • 122
  • 2
    On a machine with internet access: `pip download connexion[swagger-ui] --dest some/dir`, on the machine without internet access: `pip install connexion[swagger-ui] --no-index --find-links some/dir` – hoefling May 10 '19 at 18:12
  • 4
    Possible duplicate of [Python Packages Offline Installation](https://stackoverflow.com/questions/11091623/python-packages-offline-installation) – phd May 10 '19 at 18:18
  • 1
    https://stackoverflow.com/search?q=%5Bpip%5D+offline+install – phd May 10 '19 at 18:18

0 Answers0