Pybombs configuration
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I'm a new user to pybombs - there is an error message when I run this command to configure it:
sudo ./pybombs config
Error:
sudo: ./pybombs: command not found
gnuradio
add a comment |
I'm a new user to pybombs - there is an error message when I run this command to configure it:
sudo ./pybombs config
Error:
sudo: ./pybombs: command not found
gnuradio
add a comment |
I'm a new user to pybombs - there is an error message when I run this command to configure it:
sudo ./pybombs config
Error:
sudo: ./pybombs: command not found
gnuradio
I'm a new user to pybombs - there is an error message when I run this command to configure it:
sudo ./pybombs config
Error:
sudo: ./pybombs: command not found
gnuradio
gnuradio
edited Feb 1 '16 at 12:31
Greenonline
4072517
4072517
asked Feb 1 '16 at 12:16
Mohamed YouseifMohamed Youseif
517
517
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Pybombs installer is a python script its self, you need to call python when you run the installer.
Download and extract pybombs.zip
wget https://github.com/gnuradio/pybombs/archive/master.zip
unzip ~/pybombs-master.zip
Move to the extracted directory and run setup.py
cd ~/pybombs-master
sudo python setup.py install
When you configure you must first change to the directory where pybomb
is installed
cd /usr/local/bin
./pybombs config
Tested on 15.10
Welcome to AskUbuntu! If this is the answer you are looking for please click the check mark on the left to say thanks and allow others to find the right answer, if not, please give feedback.
– Mark Kirby
Feb 1 '16 at 15:06
Pybombs had been installed , byt when i run this command it gives that there is no command like that as mentioned in my question The command : ./pybombs config
– Mohamed Youseif
Feb 2 '16 at 9:10
add a comment |
One of at least three problems:
Is
pybombs
actually in your current directory?ls -l ./pybombs
to be sure.Is
pybombs
executable?ls -l ./pybombs
to check,chmod +x ./pybombs
to fix.If
pybombs
is a script, is the script interpreter in the shebang ("#!
) line installed on your system where the script expects?head -n 1 ./pybombs
to see it, and unless the line starts with"#!env "
,ls -l $( head -n 1 ./pybombs | cut -c3- | awk '{print $1}' )
will see if the interpreter is where the script expects.Other.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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%2faskubuntu.com%2fquestions%2f728268%2fpybombs-configuration%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Pybombs installer is a python script its self, you need to call python when you run the installer.
Download and extract pybombs.zip
wget https://github.com/gnuradio/pybombs/archive/master.zip
unzip ~/pybombs-master.zip
Move to the extracted directory and run setup.py
cd ~/pybombs-master
sudo python setup.py install
When you configure you must first change to the directory where pybomb
is installed
cd /usr/local/bin
./pybombs config
Tested on 15.10
Welcome to AskUbuntu! If this is the answer you are looking for please click the check mark on the left to say thanks and allow others to find the right answer, if not, please give feedback.
– Mark Kirby
Feb 1 '16 at 15:06
Pybombs had been installed , byt when i run this command it gives that there is no command like that as mentioned in my question The command : ./pybombs config
– Mohamed Youseif
Feb 2 '16 at 9:10
add a comment |
Pybombs installer is a python script its self, you need to call python when you run the installer.
Download and extract pybombs.zip
wget https://github.com/gnuradio/pybombs/archive/master.zip
unzip ~/pybombs-master.zip
Move to the extracted directory and run setup.py
cd ~/pybombs-master
sudo python setup.py install
When you configure you must first change to the directory where pybomb
is installed
cd /usr/local/bin
./pybombs config
Tested on 15.10
Welcome to AskUbuntu! If this is the answer you are looking for please click the check mark on the left to say thanks and allow others to find the right answer, if not, please give feedback.
– Mark Kirby
Feb 1 '16 at 15:06
Pybombs had been installed , byt when i run this command it gives that there is no command like that as mentioned in my question The command : ./pybombs config
– Mohamed Youseif
Feb 2 '16 at 9:10
add a comment |
Pybombs installer is a python script its self, you need to call python when you run the installer.
Download and extract pybombs.zip
wget https://github.com/gnuradio/pybombs/archive/master.zip
unzip ~/pybombs-master.zip
Move to the extracted directory and run setup.py
cd ~/pybombs-master
sudo python setup.py install
When you configure you must first change to the directory where pybomb
is installed
cd /usr/local/bin
./pybombs config
Tested on 15.10
Pybombs installer is a python script its self, you need to call python when you run the installer.
Download and extract pybombs.zip
wget https://github.com/gnuradio/pybombs/archive/master.zip
unzip ~/pybombs-master.zip
Move to the extracted directory and run setup.py
cd ~/pybombs-master
sudo python setup.py install
When you configure you must first change to the directory where pybomb
is installed
cd /usr/local/bin
./pybombs config
Tested on 15.10
edited Feb 2 '16 at 9:41
answered Feb 1 '16 at 15:02
Mark KirbyMark Kirby
14.3k146398
14.3k146398
Welcome to AskUbuntu! If this is the answer you are looking for please click the check mark on the left to say thanks and allow others to find the right answer, if not, please give feedback.
– Mark Kirby
Feb 1 '16 at 15:06
Pybombs had been installed , byt when i run this command it gives that there is no command like that as mentioned in my question The command : ./pybombs config
– Mohamed Youseif
Feb 2 '16 at 9:10
add a comment |
Welcome to AskUbuntu! If this is the answer you are looking for please click the check mark on the left to say thanks and allow others to find the right answer, if not, please give feedback.
– Mark Kirby
Feb 1 '16 at 15:06
Pybombs had been installed , byt when i run this command it gives that there is no command like that as mentioned in my question The command : ./pybombs config
– Mohamed Youseif
Feb 2 '16 at 9:10
Welcome to AskUbuntu! If this is the answer you are looking for please click the check mark on the left to say thanks and allow others to find the right answer, if not, please give feedback.
– Mark Kirby
Feb 1 '16 at 15:06
Welcome to AskUbuntu! If this is the answer you are looking for please click the check mark on the left to say thanks and allow others to find the right answer, if not, please give feedback.
– Mark Kirby
Feb 1 '16 at 15:06
Pybombs had been installed , byt when i run this command it gives that there is no command like that as mentioned in my question The command : ./pybombs config
– Mohamed Youseif
Feb 2 '16 at 9:10
Pybombs had been installed , byt when i run this command it gives that there is no command like that as mentioned in my question The command : ./pybombs config
– Mohamed Youseif
Feb 2 '16 at 9:10
add a comment |
One of at least three problems:
Is
pybombs
actually in your current directory?ls -l ./pybombs
to be sure.Is
pybombs
executable?ls -l ./pybombs
to check,chmod +x ./pybombs
to fix.If
pybombs
is a script, is the script interpreter in the shebang ("#!
) line installed on your system where the script expects?head -n 1 ./pybombs
to see it, and unless the line starts with"#!env "
,ls -l $( head -n 1 ./pybombs | cut -c3- | awk '{print $1}' )
will see if the interpreter is where the script expects.Other.
add a comment |
One of at least three problems:
Is
pybombs
actually in your current directory?ls -l ./pybombs
to be sure.Is
pybombs
executable?ls -l ./pybombs
to check,chmod +x ./pybombs
to fix.If
pybombs
is a script, is the script interpreter in the shebang ("#!
) line installed on your system where the script expects?head -n 1 ./pybombs
to see it, and unless the line starts with"#!env "
,ls -l $( head -n 1 ./pybombs | cut -c3- | awk '{print $1}' )
will see if the interpreter is where the script expects.Other.
add a comment |
One of at least three problems:
Is
pybombs
actually in your current directory?ls -l ./pybombs
to be sure.Is
pybombs
executable?ls -l ./pybombs
to check,chmod +x ./pybombs
to fix.If
pybombs
is a script, is the script interpreter in the shebang ("#!
) line installed on your system where the script expects?head -n 1 ./pybombs
to see it, and unless the line starts with"#!env "
,ls -l $( head -n 1 ./pybombs | cut -c3- | awk '{print $1}' )
will see if the interpreter is where the script expects.Other.
One of at least three problems:
Is
pybombs
actually in your current directory?ls -l ./pybombs
to be sure.Is
pybombs
executable?ls -l ./pybombs
to check,chmod +x ./pybombs
to fix.If
pybombs
is a script, is the script interpreter in the shebang ("#!
) line installed on your system where the script expects?head -n 1 ./pybombs
to see it, and unless the line starts with"#!env "
,ls -l $( head -n 1 ./pybombs | cut -c3- | awk '{print $1}' )
will see if the interpreter is where the script expects.Other.
answered Feb 1 '16 at 13:42
waltinatorwaltinator
23.1k74269
23.1k74269
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f728268%2fpybombs-configuration%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