Proper way to share your script in a small network
I am a newbie at Python and I am starting my first tests. So, I have created the below script which has the following structure :
My question is, lets say that now I want to make this available for other users. the simplest way I can think of, is to create a folder in /bin/my_python_app and copy everything there.
The thing is, this looks a little brute.
What is the right way to do this?
Is there a way in which I can bundle all the script dependencies in one file and have that as the "binary" of my app so other people can run it?
I dont want people doing any other thing that simply run my app, without requiring them to install it or add any other kind of extra packages to their system.
python dependencies
add a comment |
I am a newbie at Python and I am starting my first tests. So, I have created the below script which has the following structure :
My question is, lets say that now I want to make this available for other users. the simplest way I can think of, is to create a folder in /bin/my_python_app and copy everything there.
The thing is, this looks a little brute.
What is the right way to do this?
Is there a way in which I can bundle all the script dependencies in one file and have that as the "binary" of my app so other people can run it?
I dont want people doing any other thing that simply run my app, without requiring them to install it or add any other kind of extra packages to their system.
python dependencies
you can cx_freeze to create a "binary" out of your python ... you could also make a debian file ... keep in mind the binary will only work for the system that it is built for (see also: ptmccarthy.github.io/2016/01/22/python-cx-freeze )
– Joran Beasley
Nov 13 '18 at 20:17
@JoranBeasley well I accidentally left a comment for you as an answer. :( Thanks buddy
– Matias Barrios
Nov 13 '18 at 20:45
add a comment |
I am a newbie at Python and I am starting my first tests. So, I have created the below script which has the following structure :
My question is, lets say that now I want to make this available for other users. the simplest way I can think of, is to create a folder in /bin/my_python_app and copy everything there.
The thing is, this looks a little brute.
What is the right way to do this?
Is there a way in which I can bundle all the script dependencies in one file and have that as the "binary" of my app so other people can run it?
I dont want people doing any other thing that simply run my app, without requiring them to install it or add any other kind of extra packages to their system.
python dependencies
I am a newbie at Python and I am starting my first tests. So, I have created the below script which has the following structure :
My question is, lets say that now I want to make this available for other users. the simplest way I can think of, is to create a folder in /bin/my_python_app and copy everything there.
The thing is, this looks a little brute.
What is the right way to do this?
Is there a way in which I can bundle all the script dependencies in one file and have that as the "binary" of my app so other people can run it?
I dont want people doing any other thing that simply run my app, without requiring them to install it or add any other kind of extra packages to their system.
python dependencies
python dependencies
asked Nov 13 '18 at 19:59
Matias BarriosMatias Barrios
1,542316
1,542316
you can cx_freeze to create a "binary" out of your python ... you could also make a debian file ... keep in mind the binary will only work for the system that it is built for (see also: ptmccarthy.github.io/2016/01/22/python-cx-freeze )
– Joran Beasley
Nov 13 '18 at 20:17
@JoranBeasley well I accidentally left a comment for you as an answer. :( Thanks buddy
– Matias Barrios
Nov 13 '18 at 20:45
add a comment |
you can cx_freeze to create a "binary" out of your python ... you could also make a debian file ... keep in mind the binary will only work for the system that it is built for (see also: ptmccarthy.github.io/2016/01/22/python-cx-freeze )
– Joran Beasley
Nov 13 '18 at 20:17
@JoranBeasley well I accidentally left a comment for you as an answer. :( Thanks buddy
– Matias Barrios
Nov 13 '18 at 20:45
you can cx_freeze to create a "binary" out of your python ... you could also make a debian file ... keep in mind the binary will only work for the system that it is built for (see also: ptmccarthy.github.io/2016/01/22/python-cx-freeze )
– Joran Beasley
Nov 13 '18 at 20:17
you can cx_freeze to create a "binary" out of your python ... you could also make a debian file ... keep in mind the binary will only work for the system that it is built for (see also: ptmccarthy.github.io/2016/01/22/python-cx-freeze )
– Joran Beasley
Nov 13 '18 at 20:17
@JoranBeasley well I accidentally left a comment for you as an answer. :( Thanks buddy
– Matias Barrios
Nov 13 '18 at 20:45
@JoranBeasley well I accidentally left a comment for you as an answer. :( Thanks buddy
– Matias Barrios
Nov 13 '18 at 20:45
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53288598%2fproper-way-to-share-your-script-in-a-small-network%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53288598%2fproper-way-to-share-your-script-in-a-small-network%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
you can cx_freeze to create a "binary" out of your python ... you could also make a debian file ... keep in mind the binary will only work for the system that it is built for (see also: ptmccarthy.github.io/2016/01/22/python-cx-freeze )
– Joran Beasley
Nov 13 '18 at 20:17
@JoranBeasley well I accidentally left a comment for you as an answer. :( Thanks buddy
– Matias Barrios
Nov 13 '18 at 20:45