Skip to content Skip to sidebar Skip to footer

Installing Platform-specific Dependencies Through Pip

I'm using LDTP in my tests and it comes as two different packages for two different platforms: PyAtom on Mac OS; LDTP on Linux. It so happens, that both of them has platform-spec

Solution 1:

maybe you can create a file for each platform requirements:

requirements-windows.txt
requirements-linux.txt
requirements-mac.txt

and then run for example:

pip install -r requirements-mac.txt

if you like...

Post a Comment for "Installing Platform-specific Dependencies Through Pip"