I have a situation:
In macOS machine with Python 3.6.8
, I wrote single python script called publisher.py
which uses pycrypto
package.
Everything runs as expected.
Now, I need to put my code in a shared location of production Linux env, from where hundreds of developers will run the script with just Python 3.6.8
in their machine.
I don’t have rights/privilege to install pycrypto
in production Linux env, I can just copy something there.
Obviously, I can’t force all developers to do pip install pycrpto
on their individual env.
Is there a way, I can package my single script with it’s dependency(pycrypto
) and copy it to production Linux env?
Please suggest.