install_requires
似乎使用pip
自动安装软件包。很好,但是我想从conda
,conda-forge
,github
,bitbucket
或其他位置安装一些软件包。
是否有一种方法可以直接在安装要求中执行此操作?像这样:
setup(
...
install_requires=[
'python-dotenv',
'conda pymssql',
'conda -c conda-forge ibm_db',
'ssh://git@bitbucket.repos.com:23606/repos/package.git',
'https://github.com/someone/something.git',
...
],
那太好了,但我找不到如何做的方法。