pip 从本地目录安装所有包
我有一个包含 python 包的文件夹,它们依赖于。我怎样才能安装它们? 我正在寻找类似 dpkg -i *.deb
的内容 例如:我将包 a、b...z 放入文件夹“dir”中。包a,有依赖项a1,a2等。如果我运行
for it in os.system('ls').split('\n'):
os.system(f'pip install {it}')
但名称包“a”在它们之前dep a1,并且pip尝试从互联网下载a1,但这是不可能的。 我的意思是我需要在没有互联网的情况下从计算机上的目录安装一些软件包。
I have a folder containing python packages and they depend. How can I install them all?
I am looking for something like dpkg -i *.deb
For example: I have packages a,b...z into folder "dir". Package a, have dependies a1,a2 etc. if I run
for it in os.system('ls').split('\n'):
os.system(f'pip install {it}')
but name package "a" go before them dep a1, and pip try download a1 from internet, but it impossiple.
I mean that i need install some packages from directory on machine without internet.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论