-
Notifications
You must be signed in to change notification settings - Fork 73
Failed to load a language-shellscript package grammar #142
Comments
it says
Atom: 1.36.1 ia32 Stack TraceFailed to load a language-shellscript package grammar
Commands
Non-Core Packages
|
It looks like you have language-shellscript installed manually? language-shellscript is a core package so doesn't need to be installed - can you try uninstalling and see if that clears things up?
|
@rsese How do you get to Apm uninstall language-shellscript do I type it into cmd, atom, PowerShell, I have no idea how to get to amp uninstall language-shellscript please tell me how. |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Yes, you can copy/paste or type that exact command in cmd or PowerShell. Do you remember if you specifically tried to install language-shellscript? |
Ihad the same issue from a fresh installation on Fedora. I actually fixed this error by installing the package
Despite the following warning, it seems to work and I no longer get that error on startup
|
Same problem here:
It was the same problem with
|
Also same issue here, and matching alexisfrjp's report
No manual install of the grammar involved here - this cropped up after an upgrade to Atom Update: Looks like the version of |
Same here with RHEL 7.7 and 7.8 |
@alexisfrjp @ptous @pinacoelho I have the same issue as you, but sorry if I'm wrong, how is this related to the original issue (except the error message, i.e. title of this issue)? The OP hardly mentioned anything about glibc, and the stack trace, if you look at it, is different. As such I have created a new issue for this at #161. Please feel free to follow it. |
Still in |
Fresh install of Atom on CentOS 7 threw this error along with |
I got tired of waiting for the developers to fix this bug. And having to figure out the solution everytime I install atom on a RHEL/CentOS 7 system. So I finally wrote an install script that does it all for me. It's based on what others have posted, but this version will also install atom, and then go onto build gcc 5.4.0 and install it into the #/bin/bash -x
echo "Downloading the atom rpm file..."
curl --location --output atom.x86_64.rpm https://atom.io/download/rpm
echo "Installing the atom rpm file..."
sudo yum -y install atom.x86_64.rpm
echo "Downloading gcc source files..."
curl --location --output gcc-5.4.0.tar.bz2 https://ftp.gnu.org/gnu/gcc/gcc-5.4.0/gcc-5.4.0.tar.bz2
echo "Extracting files..."
tar xvfj gcc-5.4.0.tar.bz2
echo "Installing dependencies..."
sudo yum -y install gmp-devel mpfr-devel libmpc-devel gcc-c++
echo "Configure and install..."
cd gcc-5.4.0 && ./configure --enable-languages=c,c++ --disable-multilib --prefix=/opt/gcc-5.4.0 && make -j$(nproc) && sudo make install
echo "Adding the library path to the atom launcher..."
sudo sed -i "11i\ \\nexport LD_LIBRARY_PATH=/opt/gcc-5.4.0/lib64/:\$LD_LIBRARY_PATH\\n" /usr/bin/atom
echo "Cleaning up the build directory..."
cd ../ && rm -rf atom.x86_64.rpm gcc-5.4.0.tar.bz2 gcc-5.4.0
echo "Install complete." |
Hi, I am new to Atom and this message and I have no idea to solve it because I look at almost every single discussion and nothing helps please help me and I want the way atom was before the message appeared please and you may need to explain the steps to me
please help Photo
The text was updated successfully, but these errors were encountered: