atom: command not found2019 Community Moderator Electionapm and atom commands not found: LinuxMint Software Manager installstartxwin: command not foundAtom - compatible processors for a kernelzsh using CPU at 100% after starting atom editorafter compiling node.js from source atom fails to load from command line onlym4 command not found after manual installAtom text editor on a Raspberry Pi 3 Model BCentos: getting this error on Atom editorI upgrade atom but its version does not changeexport: command not foundapm and atom commands not found: LinuxMint Software Manager install
Added a new user on Ubuntu, set password not working?
How to indicate a cut out for a product window
Removing files under particular conditions (number of files, file age)
Loading commands from file
What are the purposes of autoencoders?
Is there any references on the tensor product of presentable (1-)categories?
New brakes for 90s road bike
Travelling outside the UK without a passport
How should I respond when I lied about my education and the company finds out through background check?
Pre-mixing cryogenic fuels and using only one fuel tank
When were female captains banned from Starfleet?
Fear of getting stuck on one programming language / technology that is not used in my country
If infinitesimal transformations commute why dont the generators of the Lorentz group commute?
Aragorn's "guise" in the Orthanc Stone
What was this official D&D 3.5e Lovecraft-flavored rulebook?
Why Shazam when there is already Superman?
How to explain what's wrong with this application of the chain rule?
is this legal and f i dont come up with extra money is the deal off
How do you make your own symbol when Detexify fails?
Did arcade monitors have same pixel aspect ratio as TV sets?
Why can Carol Danvers change her suit colours in the first place?
Is it better practice to read straight from sheet music rather than memorize it?
Melting point of aspirin, contradicting sources
What is Cash Advance APR?
atom: command not found
2019 Community Moderator Electionapm and atom commands not found: LinuxMint Software Manager installstartxwin: command not foundAtom - compatible processors for a kernelzsh using CPU at 100% after starting atom editorafter compiling node.js from source atom fails to load from command line onlym4 command not found after manual installAtom text editor on a Raspberry Pi 3 Model BCentos: getting this error on Atom editorI upgrade atom but its version does not changeexport: command not foundapm and atom commands not found: LinuxMint Software Manager install
I downloaded atom-amd64.tar.gz from this page. I then moved it from Downloads to a folder I made in Documents called Atom. Then I used tar -zxvf atom-amd64.tar.gz. If I type ./atom from inside /root/Documents/Atom, the program launches. However, I want to be able to launch it from anywhere by simply typing atom, like I can with gedit. Ex: gedit test.c would open a document called test.c with gedit. I've tried looking this up, but can't figure out what is going wrong. I read that I may need to add it to a/my/the PATH, but when I did whereis atom, all I got was "atom:" with no path following. I don't want to start messing with adding stuff to PATH unless I know for sure that's what I need to do, and if there's no better way (such as placing atom in a different directory)
Apologies for the terrible formatting.
linux software-installation atom
add a comment |
I downloaded atom-amd64.tar.gz from this page. I then moved it from Downloads to a folder I made in Documents called Atom. Then I used tar -zxvf atom-amd64.tar.gz. If I type ./atom from inside /root/Documents/Atom, the program launches. However, I want to be able to launch it from anywhere by simply typing atom, like I can with gedit. Ex: gedit test.c would open a document called test.c with gedit. I've tried looking this up, but can't figure out what is going wrong. I read that I may need to add it to a/my/the PATH, but when I did whereis atom, all I got was "atom:" with no path following. I don't want to start messing with adding stuff to PATH unless I know for sure that's what I need to do, and if there's no better way (such as placing atom in a different directory)
Apologies for the terrible formatting.
linux software-installation atom
add a comment |
I downloaded atom-amd64.tar.gz from this page. I then moved it from Downloads to a folder I made in Documents called Atom. Then I used tar -zxvf atom-amd64.tar.gz. If I type ./atom from inside /root/Documents/Atom, the program launches. However, I want to be able to launch it from anywhere by simply typing atom, like I can with gedit. Ex: gedit test.c would open a document called test.c with gedit. I've tried looking this up, but can't figure out what is going wrong. I read that I may need to add it to a/my/the PATH, but when I did whereis atom, all I got was "atom:" with no path following. I don't want to start messing with adding stuff to PATH unless I know for sure that's what I need to do, and if there's no better way (such as placing atom in a different directory)
Apologies for the terrible formatting.
linux software-installation atom
I downloaded atom-amd64.tar.gz from this page. I then moved it from Downloads to a folder I made in Documents called Atom. Then I used tar -zxvf atom-amd64.tar.gz. If I type ./atom from inside /root/Documents/Atom, the program launches. However, I want to be able to launch it from anywhere by simply typing atom, like I can with gedit. Ex: gedit test.c would open a document called test.c with gedit. I've tried looking this up, but can't figure out what is going wrong. I read that I may need to add it to a/my/the PATH, but when I did whereis atom, all I got was "atom:" with no path following. I don't want to start messing with adding stuff to PATH unless I know for sure that's what I need to do, and if there's no better way (such as placing atom in a different directory)
Apologies for the terrible formatting.
linux software-installation atom
linux software-installation atom
edited Jun 18 '17 at 18:21
Jeff Schaller
43.8k1161141
43.8k1161141
asked Jun 18 '17 at 18:10
BunyipBunyip
1033
1033
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
It would help to know which GNU/Linux distribution you are actually using. It also sounds like you are trying to use root as your everyday user, this is a bad idea! Furthermore, it is better to install atom through your package manager. This will allow you to automatically keep your copy of atom up to date. It will also automatically put the program in the right place saving you having to always manually update your path. Good practices aside lets fix your issue.
The PATH variable is exactly what you need to edit. You simply need to add the following to the end of your .bashrc (assuming you're using bash).
PATH="/root/Documents/Atom:$PATH"
This simply adds /root/Documents/Atom to the start of your current path. Now whenever you type a command (after opening a new terminal or running source ~/.bashrc) the shell will look in the Atom folder for a matching program.
If you really don't want to alter your path, you could instead place a symlink to atom in a directory already in your path. One such place is /usr/local/bin. It's definitely better to let your package manager handle this rather than doing it manually though.
Thanks for this answer. I can't seem to find Atom on Synaptic, though. :/
– Bunyip
Jun 18 '17 at 20:50
Sounds like you're probably using Ubuntu or at least something Debian based. I would install the packagegdebi. You can then download the most recent .deb file from github.com/atom/atom/releases. You can then simply rungdebi atom-amd64.deb. This will resolve dependencies and install in correct location automatically. You may still have to do updates from within atom.
– rlf
Jun 19 '17 at 6:51
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f371831%2fatom-command-not-found%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
It would help to know which GNU/Linux distribution you are actually using. It also sounds like you are trying to use root as your everyday user, this is a bad idea! Furthermore, it is better to install atom through your package manager. This will allow you to automatically keep your copy of atom up to date. It will also automatically put the program in the right place saving you having to always manually update your path. Good practices aside lets fix your issue.
The PATH variable is exactly what you need to edit. You simply need to add the following to the end of your .bashrc (assuming you're using bash).
PATH="/root/Documents/Atom:$PATH"
This simply adds /root/Documents/Atom to the start of your current path. Now whenever you type a command (after opening a new terminal or running source ~/.bashrc) the shell will look in the Atom folder for a matching program.
If you really don't want to alter your path, you could instead place a symlink to atom in a directory already in your path. One such place is /usr/local/bin. It's definitely better to let your package manager handle this rather than doing it manually though.
Thanks for this answer. I can't seem to find Atom on Synaptic, though. :/
– Bunyip
Jun 18 '17 at 20:50
Sounds like you're probably using Ubuntu or at least something Debian based. I would install the packagegdebi. You can then download the most recent .deb file from github.com/atom/atom/releases. You can then simply rungdebi atom-amd64.deb. This will resolve dependencies and install in correct location automatically. You may still have to do updates from within atom.
– rlf
Jun 19 '17 at 6:51
add a comment |
It would help to know which GNU/Linux distribution you are actually using. It also sounds like you are trying to use root as your everyday user, this is a bad idea! Furthermore, it is better to install atom through your package manager. This will allow you to automatically keep your copy of atom up to date. It will also automatically put the program in the right place saving you having to always manually update your path. Good practices aside lets fix your issue.
The PATH variable is exactly what you need to edit. You simply need to add the following to the end of your .bashrc (assuming you're using bash).
PATH="/root/Documents/Atom:$PATH"
This simply adds /root/Documents/Atom to the start of your current path. Now whenever you type a command (after opening a new terminal or running source ~/.bashrc) the shell will look in the Atom folder for a matching program.
If you really don't want to alter your path, you could instead place a symlink to atom in a directory already in your path. One such place is /usr/local/bin. It's definitely better to let your package manager handle this rather than doing it manually though.
Thanks for this answer. I can't seem to find Atom on Synaptic, though. :/
– Bunyip
Jun 18 '17 at 20:50
Sounds like you're probably using Ubuntu or at least something Debian based. I would install the packagegdebi. You can then download the most recent .deb file from github.com/atom/atom/releases. You can then simply rungdebi atom-amd64.deb. This will resolve dependencies and install in correct location automatically. You may still have to do updates from within atom.
– rlf
Jun 19 '17 at 6:51
add a comment |
It would help to know which GNU/Linux distribution you are actually using. It also sounds like you are trying to use root as your everyday user, this is a bad idea! Furthermore, it is better to install atom through your package manager. This will allow you to automatically keep your copy of atom up to date. It will also automatically put the program in the right place saving you having to always manually update your path. Good practices aside lets fix your issue.
The PATH variable is exactly what you need to edit. You simply need to add the following to the end of your .bashrc (assuming you're using bash).
PATH="/root/Documents/Atom:$PATH"
This simply adds /root/Documents/Atom to the start of your current path. Now whenever you type a command (after opening a new terminal or running source ~/.bashrc) the shell will look in the Atom folder for a matching program.
If you really don't want to alter your path, you could instead place a symlink to atom in a directory already in your path. One such place is /usr/local/bin. It's definitely better to let your package manager handle this rather than doing it manually though.
It would help to know which GNU/Linux distribution you are actually using. It also sounds like you are trying to use root as your everyday user, this is a bad idea! Furthermore, it is better to install atom through your package manager. This will allow you to automatically keep your copy of atom up to date. It will also automatically put the program in the right place saving you having to always manually update your path. Good practices aside lets fix your issue.
The PATH variable is exactly what you need to edit. You simply need to add the following to the end of your .bashrc (assuming you're using bash).
PATH="/root/Documents/Atom:$PATH"
This simply adds /root/Documents/Atom to the start of your current path. Now whenever you type a command (after opening a new terminal or running source ~/.bashrc) the shell will look in the Atom folder for a matching program.
If you really don't want to alter your path, you could instead place a symlink to atom in a directory already in your path. One such place is /usr/local/bin. It's definitely better to let your package manager handle this rather than doing it manually though.
edited Jun 18 '17 at 20:11
answered Jun 18 '17 at 20:04
rlfrlf
498112
498112
Thanks for this answer. I can't seem to find Atom on Synaptic, though. :/
– Bunyip
Jun 18 '17 at 20:50
Sounds like you're probably using Ubuntu or at least something Debian based. I would install the packagegdebi. You can then download the most recent .deb file from github.com/atom/atom/releases. You can then simply rungdebi atom-amd64.deb. This will resolve dependencies and install in correct location automatically. You may still have to do updates from within atom.
– rlf
Jun 19 '17 at 6:51
add a comment |
Thanks for this answer. I can't seem to find Atom on Synaptic, though. :/
– Bunyip
Jun 18 '17 at 20:50
Sounds like you're probably using Ubuntu or at least something Debian based. I would install the packagegdebi. You can then download the most recent .deb file from github.com/atom/atom/releases. You can then simply rungdebi atom-amd64.deb. This will resolve dependencies and install in correct location automatically. You may still have to do updates from within atom.
– rlf
Jun 19 '17 at 6:51
Thanks for this answer. I can't seem to find Atom on Synaptic, though. :/
– Bunyip
Jun 18 '17 at 20:50
Thanks for this answer. I can't seem to find Atom on Synaptic, though. :/
– Bunyip
Jun 18 '17 at 20:50
Sounds like you're probably using Ubuntu or at least something Debian based. I would install the package
gdebi. You can then download the most recent .deb file from github.com/atom/atom/releases. You can then simply run gdebi atom-amd64.deb. This will resolve dependencies and install in correct location automatically. You may still have to do updates from within atom.– rlf
Jun 19 '17 at 6:51
Sounds like you're probably using Ubuntu or at least something Debian based. I would install the package
gdebi. You can then download the most recent .deb file from github.com/atom/atom/releases. You can then simply run gdebi atom-amd64.deb. This will resolve dependencies and install in correct location automatically. You may still have to do updates from within atom.– rlf
Jun 19 '17 at 6:51
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f371831%2fatom-command-not-found%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