How to install packages offline?

后端 未结 10 892
一个人的身影
一个人的身影 2020-11-22 00:38

What\'s the best way to download a python package and it\'s dependencies from pypi for offline installation on another machine? Is there any easy way to do this with pip or

10条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-22 01:18

    Download the wheel file (for example dlb-0.5.0-py3-none-any.whl) from Pypi and

    pip install dlb-0.5.0-py3-none-any.whl
    

提交回复
热议问题