Reputation: 87
I'm trying to install pycrypto because it's one of the dependencies for ansible. I know that gcc can be installed on Mac by installing Xcode Command Line Tools but I don't want to install Xcode because its installation can't be automated. (I need to do it on many client computers)
I've read this but it addresses linux system and not OS X.
Is there any way to install pycrypto or any similar package without gcc?
Upvotes: 0
Views: 539
Reputation: 12641
you could build pycrpyto, install locally (i.e. to $HOME) and then distribute this to the other machines
Upvotes: 1