I have developed a tool that my team can use after running the setup.py script. The tool requires this library: https://github.com/c2nes/javalang
How can I make my python setup script install this library on their computer regardless of what OS they are on. They can't run my tool without that library (Some people are on windows, mac, and linux.)
install_requires) in yoursetup.py?requirements.txtfile for specifying requirements and then feeding it into pip install. I didn't know you could do that - that's cool. But what if they don't have pip?pip? It comes with most versions of Python (3.4 onwards), or you can runget-pip.py.