install_requires
seems to automatically install the packages using pip
. That's great, but I want to install some packages from conda
, conda-forge
, github
, bitbucket
, or elsewhere.
Is there a way to do this directly in the install requires? Something like this:
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',
...
],
That would be awesome but I couldn't find out how to do it.