Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Post History

50%
+0 −0
Q&A Ruby installation in Manjaro (Arch-Based Linux)

I was reading the documentation. In Debian based Linux, I have to install build-essential, libssl-dev. But, what about Arch-Based Linux? I had tried sudo pacman -Syy build-essential libssl-dev ...

2 answers  ·  posted 3y ago by deleted user  ·  last activity 2y ago by Anonymous‭

Question manjaro ruby
#5: Post edited by (deleted user) · 2021-05-22T08:04:24Z (almost 3 years ago)
  • I was reading [the documentation](https://www.jetbrains.com/help/ruby/2021.1/set-up-a-ruby-development-environment.html#prerequisite_dependencies). In Debian based Linux, I have to install `build-essential, libssl-dev`. But, what about Arch-Based Linux? I had tried
  • ```
  • sudo pacman -Syy build-essential libssl-dev
  • ```
  • But, unfortunately those packages aren't available. I had tried with `yay` command also. But, I couldn't install them using `yay` also. I had installed `base-devel` also. I was reading [the question](https://bbs.archlinux.org/viewtopic.php?id=122984) also. But, don't need them. PHP works by Lampp/Xampp. But, Ruby needs `build-essential && libssl-dev`. While they aren't available in Manjaro than, how Ruby programmer works in Manjaro? So, there must be similar package like this.
  • - I am using Rubymine
  • - Ruby version : ruby 3.0.1p64 (2021-04-05 revision 0fb782ee38) [x86_64-linux]
  • - gem version : 3.2.15
  • <hr/>
  • I had installed `openssl` while Google is saying `build-essential` is `base-devel` and, `libssl-dev` is `openssl`.
  • ```
  • sudo pacman -Sy openssl
  • ```
  • Then, I had run following commands
  • ```
  • gem install rails
  • ruby -v
  • gem -v
  • rake -v
  • bundle install
  • ```
  • <p id = "bundle_install">
  • When I tried `bundle install` I got an error `Could not locate Gemfile`.
  • </p>
  • - Bundler version : Bundler version 2.2.15
  • But, when I installed bundler using the command `gem install bundler` I got following error
  • >WARNING: You don't have /home/istiak/.local/share/gem/ruby/3.0.0/bin in your PATH,<br/>
  • gem executables will not run.<br/>
  • Successfully installed bundler-2.2.17<br/>
  • 1 gem installed
  • When I check rails version I get there's no `rails` package. And, I had installed rails successfully.
  • <p id="rails">
  • `gem install rails`
  • >WARNING: You don't have /home/istiak/.local/share/gem/ruby/3.0.0/bin in your PATH,<br/>
  • gem executables will not run.<br/>
  • Successfully installed rails-6.1.3.2<br/>
  • 1 gem installed
  • </p>
  • <p id="gem_error">
  • When I try to compile the file in Rubymine than, I get `Run Configuration Error: No Gemfile found`.
  • </p>
  • I am adding error in short below :
  • 1. <a href="#rails">I don't have rails after installation also</a>
  • 2. <a href="#gem_error">`No Gemfile found` error while compiling ruby file from Rubymine</a>
  • 3. <a href="#bundle_install">`Could not locate Gemfile` while executing `bundle install`</a>
  • I was reading [the documentation](https://www.jetbrains.com/help/ruby/2021.1/set-up-a-ruby-development-environment.html#prerequisite_dependencies). In Debian based Linux, I have to install `build-essential, libssl-dev`. But, what about Arch-Based Linux? I had tried
  • ```
  • sudo pacman -Syy build-essential libssl-dev
  • ```
  • But, unfortunately those packages aren't available. I had tried with `yay` command also. But, I couldn't install them using `yay` also. I had installed `base-devel` also. I was reading [the question](https://bbs.archlinux.org/viewtopic.php?id=122984) also. But, don't need them. PHP works by Lampp/Xampp. But, Ruby needs `build-essential && libssl-dev`. While they aren't available in Manjaro than, how Ruby programmer works in Manjaro? So, there must be similar package like this.
  • - I am using Rubymine
  • - Ruby version : ruby 3.0.1p64 (2021-04-05 revision 0fb782ee38) [x86_64-linux]
  • - gem version : 3.2.15
  • <hr/>
  • I had installed `openssl` while Google is saying `build-essential` is `base-devel` and, `libssl-dev` is `openssl`.
  • ```
  • sudo pacman -Sy openssl
  • ```
  • Then, I had run following commands
  • ```
  • gem install rails
  • ruby -v
  • gem -v
  • rake -v
  • bundle install
  • ```
  • <p id = "bundle_install">
  • When I tried `bundle install` I got an error `Could not locate Gemfile`.
  • </p>
  • - Bundler version : Bundler version 2.2.15
  • But, when I installed bundler using the command `gem install bundler` I got following error
  • >WARNING: You don't have /home/istiak/.local/share/gem/ruby/3.0.0/bin in your PATH,<br/>
  • gem executables will not run.<br/>
  • Successfully installed bundler-2.2.17<br/>
  • 1 gem installed
  • When I check rails version I get there's no `rails` package. And, I had installed rails successfully.
  • <p id="rails">
  • `gem install rails`
  • >WARNING: You don't have /home/istiak/.local/share/gem/ruby/3.0.0/bin in your PATH,<br/>
  • gem executables will not run.<br/>
  • Successfully installed rails-6.1.3.2<br/>
  • 1 gem installed
  • `gem which rails` returns
  • `/home/istiak/.local/share/gem/ruby/3.0.0/gems/railties-6.1.3.2/lib/rails.rb`
  • </p>
  • <p id="gem_error">
  • When I try to compile the file in Rubymine than, I get `Run Configuration Error: No Gemfile found`.
  • </p>
  • I am adding error in short below :
  • 1. <a href="#rails">I don't have rails after installation also</a>
  • 2. <a href="#gem_error">`No Gemfile found` error while compiling ruby file from Rubymine</a>
  • 3. <a href="#bundle_install">`Could not locate Gemfile` while executing `bundle install`</a>
#4: Post edited by (deleted user) · 2021-05-22T08:02:52Z (almost 3 years ago)
  • I was reading [the documentation](https://www.jetbrains.com/help/ruby/2021.1/set-up-a-ruby-development-environment.html#prerequisite_dependencies). In Debian based Linux, I have to install `build-essential, libssl-dev`. But, what about Arch-Based Linux? I had tried
  • ```
  • sudo pacman -Syy build-essential libssl-dev
  • ```
  • But, unfortunately those packages aren't available. I had tried with `yay` command also. But, I couldn't install them using `yay` also. I had installed `base-devel` also. I was reading [the question](https://bbs.archlinux.org/viewtopic.php?id=122984) also. But, don't need them. PHP works by Lampp/Xampp. But, Ruby needs `build-essential && libssl-dev`. While they aren't available in Manjaro than, how Ruby programmer works in Manjaro? So, there must be similar package like this.
  • - I am using Rubymine
  • - Ruby version : ruby 3.0.1p64 (2021-04-05 revision 0fb782ee38) [x86_64-linux]
  • - gem version : 3.2.15
  • <hr/>
  • I had installed `openssl` while Google is saying `build-essential` is `base-devel` and, `libssl-dev` is `openssl`.
  • ```
  • sudo pacman -Sy openssl
  • ```
  • Then, I had run following commands
  • ```
  • gem install rails
  • ruby -v
  • gem -v
  • rake -v
  • bundle install
  • ```
  • <div id = "bundle_install">
  • When I tried `bundle install` I got an error `Could not locate Gemfile`.
  • </div>
  • - Bundler version : Bundler version 2.2.15
  • But, when I installed bundler using the command `gem install bundler` I got following error
  • >WARNING: You don't have /home/istiak/.local/share/gem/ruby/3.0.0/bin in your PATH,<br/>
  • gem executables will not run.<br/>
  • Successfully installed bundler-2.2.17<br/>
  • 1 gem installed
  • When I check rails version I get there's no `rails` package. And, I had installed rails successfully.
  • <div id="rails">
  • `gem install rails`
  • >WARNING: You don't have /home/istiak/.local/share/gem/ruby/3.0.0/bin in your PATH,<br/>
  • gem executables will not run.<br/>
  • Successfully installed rails-6.1.3.2<br/>
  • 1 gem installed
  • </div>
  • <div id="gem_error">
  • When I try to compile the file in Rubymine than, I get `Run Configuration Error: No Gemfile found`.
  • </div>
  • I am adding error in short below :
  • 1. <a href="#rails">I don't have rails after installation also</a>
  • 2. <a href="#gem_error">`No Gemfile found` error while compiling ruby file from Rubymine</a>
  • 3. <a href="#bundle_install">`Could not locate Gemfile` while executing `bundle install`</a>
  • I was reading [the documentation](https://www.jetbrains.com/help/ruby/2021.1/set-up-a-ruby-development-environment.html#prerequisite_dependencies). In Debian based Linux, I have to install `build-essential, libssl-dev`. But, what about Arch-Based Linux? I had tried
  • ```
  • sudo pacman -Syy build-essential libssl-dev
  • ```
  • But, unfortunately those packages aren't available. I had tried with `yay` command also. But, I couldn't install them using `yay` also. I had installed `base-devel` also. I was reading [the question](https://bbs.archlinux.org/viewtopic.php?id=122984) also. But, don't need them. PHP works by Lampp/Xampp. But, Ruby needs `build-essential && libssl-dev`. While they aren't available in Manjaro than, how Ruby programmer works in Manjaro? So, there must be similar package like this.
  • - I am using Rubymine
  • - Ruby version : ruby 3.0.1p64 (2021-04-05 revision 0fb782ee38) [x86_64-linux]
  • - gem version : 3.2.15
  • <hr/>
  • I had installed `openssl` while Google is saying `build-essential` is `base-devel` and, `libssl-dev` is `openssl`.
  • ```
  • sudo pacman -Sy openssl
  • ```
  • Then, I had run following commands
  • ```
  • gem install rails
  • ruby -v
  • gem -v
  • rake -v
  • bundle install
  • ```
  • <p id = "bundle_install">
  • When I tried `bundle install` I got an error `Could not locate Gemfile`.
  • </p>
  • - Bundler version : Bundler version 2.2.15
  • But, when I installed bundler using the command `gem install bundler` I got following error
  • >WARNING: You don't have /home/istiak/.local/share/gem/ruby/3.0.0/bin in your PATH,<br/>
  • gem executables will not run.<br/>
  • Successfully installed bundler-2.2.17<br/>
  • 1 gem installed
  • When I check rails version I get there's no `rails` package. And, I had installed rails successfully.
  • <p id="rails">
  • `gem install rails`
  • >WARNING: You don't have /home/istiak/.local/share/gem/ruby/3.0.0/bin in your PATH,<br/>
  • gem executables will not run.<br/>
  • Successfully installed rails-6.1.3.2<br/>
  • 1 gem installed
  • </p>
  • <p id="gem_error">
  • When I try to compile the file in Rubymine than, I get `Run Configuration Error: No Gemfile found`.
  • </p>
  • I am adding error in short below :
  • 1. <a href="#rails">I don't have rails after installation also</a>
  • 2. <a href="#gem_error">`No Gemfile found` error while compiling ruby file from Rubymine</a>
  • 3. <a href="#bundle_install">`Could not locate Gemfile` while executing `bundle install`</a>
#3: Post edited by (deleted user) · 2021-05-22T08:02:19Z (almost 3 years ago)
  • I was reading [the documentation](https://www.jetbrains.com/help/ruby/2021.1/set-up-a-ruby-development-environment.html#prerequisite_dependencies). In Debian based Linux, I have to install `build-essential, libssl-dev`. But, what about Arch-Based Linux? I had tried
  • ```
  • sudo pacman -Syy build-essential libssl-dev
  • ```
  • But, unfortunately those packages aren't available. I had tried with `yay` command also. But, I couldn't install them using `yay` also. I had installed `base-devel` also. I was reading [the question](https://bbs.archlinux.org/viewtopic.php?id=122984) also. But, don't need them. PHP works by Lampp/Xampp. But, Ruby needs `build-essential && libssl-dev`. While they aren't available in Manjaro than, how Ruby programmer works in Manjaro? So, there must be similar package like this.
  • - I am using Rubymine
  • - Ruby version : ruby 3.0.1p64 (2021-04-05 revision 0fb782ee38) [x86_64-linux]
  • - gem version : 3.2.15
  • <hr/>
  • I had installed `openssl` while Google is saying `build-essential` is `base-devel` and, `libssl-dev` is `openssl`.
  • ```
  • sudo pacman -Sy openssl
  • ```
  • Then, I had run following commands
  • ```
  • gem install rails
  • ruby -v
  • gem -v
  • rake -v
  • bundle install
  • ```
  • <div id = "bundle_install">
  • When I tried `bundle install` I got an error `Could not locate Gemfile`.
  • </div>
  • - Bundler version : Bundler version 2.2.15
  • But, when I installed bundler using the command `gem install bundler` I got following error
  • >WARNING: You don't have /home/istiak/.local/share/gem/ruby/3.0.0/bin in your PATH,<br/>
  • gem executables will not run.<br/>
  • Successfully installed bundler-2.2.17<br/>
  • 1 gem installed
  • When I check rails version I get there's no `rails` package. And, I had installed rails successfully.
  • <div id="rails">
  • `gem install rails`
  • >WARNING: You don't have /home/istiak/.local/share/gem/ruby/3.0.0/bin in your PATH,<br/>
  • gem executables will not run.<br/>
  • Successfully installed rails-6.1.3.2<br/>
  • 1 gem installed
  • </div>
  • <div id="gem_error">
  • When I try to compile the file in Rubymine than, I get `Run Configuration Error: No Gemfile found`.
  • </div>
  • I am adding error in short below :
  • 1. <a href="#rails">I don't have rails after installation also</a>
  • 2. <a href="#gem_error">`No Gemfile found` error while compiling ruby file from Rubymine</a>
  • 3. <a href="#bundle_install">`Could not locate Gemfile` while executing `bundle install`</a>
  • I was reading [the documentation](https://www.jetbrains.com/help/ruby/2021.1/set-up-a-ruby-development-environment.html#prerequisite_dependencies). In Debian based Linux, I have to install `build-essential, libssl-dev`. But, what about Arch-Based Linux? I had tried
  • ```
  • sudo pacman -Syy build-essential libssl-dev
  • ```
  • But, unfortunately those packages aren't available. I had tried with `yay` command also. But, I couldn't install them using `yay` also. I had installed `base-devel` also. I was reading [the question](https://bbs.archlinux.org/viewtopic.php?id=122984) also. But, don't need them. PHP works by Lampp/Xampp. But, Ruby needs `build-essential && libssl-dev`. While they aren't available in Manjaro than, how Ruby programmer works in Manjaro? So, there must be similar package like this.
  • - I am using Rubymine
  • - Ruby version : ruby 3.0.1p64 (2021-04-05 revision 0fb782ee38) [x86_64-linux]
  • - gem version : 3.2.15
  • <hr/>
  • I had installed `openssl` while Google is saying `build-essential` is `base-devel` and, `libssl-dev` is `openssl`.
  • ```
  • sudo pacman -Sy openssl
  • ```
  • Then, I had run following commands
  • ```
  • gem install rails
  • ruby -v
  • gem -v
  • rake -v
  • bundle install
  • ```
  • <div id = "bundle_install">
  • When I tried `bundle install` I got an error `Could not locate Gemfile`.
  • </div>
  • - Bundler version : Bundler version 2.2.15
  • But, when I installed bundler using the command `gem install bundler` I got following error
  • >WARNING: You don't have /home/istiak/.local/share/gem/ruby/3.0.0/bin in your PATH,<br/>
  • gem executables will not run.<br/>
  • Successfully installed bundler-2.2.17<br/>
  • 1 gem installed
  • When I check rails version I get there's no `rails` package. And, I had installed rails successfully.
  • <div id="rails">
  • `gem install rails`
  • >WARNING: You don't have /home/istiak/.local/share/gem/ruby/3.0.0/bin in your PATH,<br/>
  • gem executables will not run.<br/>
  • Successfully installed rails-6.1.3.2<br/>
  • 1 gem installed
  • </div>
  • <div id="gem_error">
  • When I try to compile the file in Rubymine than, I get `Run Configuration Error: No Gemfile found`.
  • </div>
  • I am adding error in short below :
  • 1. <a href="#rails">I don't have rails after installation also</a>
  • 2. <a href="#gem_error">`No Gemfile found` error while compiling ruby file from Rubymine</a>
  • 3. <a href="#bundle_install">`Could not locate Gemfile` while executing `bundle install`</a>
#2: Post edited by (deleted user) · 2021-05-22T07:58:21Z (almost 3 years ago)
  • I was reading [the documentation](https://www.jetbrains.com/help/ruby/2021.1/set-up-a-ruby-development-environment.html#prerequisite_dependencies). In Debian based Linux, I have to install `build-essential, libssl-dev`. But, what about Arch-Based Linux? I had tried
  • ```
  • sudo pacman -Syy build-essential libssl-dev
  • ```
  • But, unfortunately those packages aren't available. I had tried with `yay` command also. But, I couldn't install them using `yay` also. I had installed `base-devel` also. I was reading [the question](https://bbs.archlinux.org/viewtopic.php?id=122984) also. But, don't need them. PHP works by Lampp/Xampp. But, Ruby needs `build-essential && libssl-dev`. While they aren't available in Manjaro than, how Ruby programmer works in Manjaro? So, there must be similar package like this.
  • - I am using Rubymine
  • - Ruby version : ruby 3.0.1p64 (2021-04-05 revision 0fb782ee38) [x86_64-linux]
  • - gem version : 3.2.15
  • I was reading [the documentation](https://www.jetbrains.com/help/ruby/2021.1/set-up-a-ruby-development-environment.html#prerequisite_dependencies). In Debian based Linux, I have to install `build-essential, libssl-dev`. But, what about Arch-Based Linux? I had tried
  • ```
  • sudo pacman -Syy build-essential libssl-dev
  • ```
  • But, unfortunately those packages aren't available. I had tried with `yay` command also. But, I couldn't install them using `yay` also. I had installed `base-devel` also. I was reading [the question](https://bbs.archlinux.org/viewtopic.php?id=122984) also. But, don't need them. PHP works by Lampp/Xampp. But, Ruby needs `build-essential && libssl-dev`. While they aren't available in Manjaro than, how Ruby programmer works in Manjaro? So, there must be similar package like this.
  • - I am using Rubymine
  • - Ruby version : ruby 3.0.1p64 (2021-04-05 revision 0fb782ee38) [x86_64-linux]
  • - gem version : 3.2.15
  • <hr/>
  • I had installed `openssl` while Google is saying `build-essential` is `base-devel` and, `libssl-dev` is `openssl`.
  • ```
  • sudo pacman -Sy openssl
  • ```
  • Then, I had run following commands
  • ```
  • gem install rails
  • ruby -v
  • gem -v
  • rake -v
  • bundle install
  • ```
  • <div id = "bundle_install">
  • When I tried `bundle install` I got an error `Could not locate Gemfile`.
  • </div>
  • - Bundler version : Bundler version 2.2.15
  • But, when I installed bundler using the command `gem install bundler` I got following error
  • >WARNING: You don't have /home/istiak/.local/share/gem/ruby/3.0.0/bin in your PATH,<br/>
  • gem executables will not run.<br/>
  • Successfully installed bundler-2.2.17<br/>
  • 1 gem installed
  • When I check rails version I get there's no `rails` package. And, I had installed rails successfully.
  • <div id="rails">
  • `gem install rails`
  • >WARNING: You don't have /home/istiak/.local/share/gem/ruby/3.0.0/bin in your PATH,<br/>
  • gem executables will not run.<br/>
  • Successfully installed rails-6.1.3.2<br/>
  • 1 gem installed
  • </div>
  • <div id="gem_error">
  • When I try to compile the file in Rubymine than, I get `Run Configuration Error: No Gemfile found`.
  • </div>
  • I am adding error in short below :
  • 1. <a href="#rails">I don't have rails after installation also</a>
  • 2. <a href="#gem_error">`No Gemfile found` error while compiling ruby file from Rubymine</a>
  • 3. <a href="#bundle_install">`Could not locate Gemfile` while executing `bundle install`</a>
#1: Initial revision by (deleted user) · 2021-05-22T06:29:18Z (almost 3 years ago)
Ruby installation in Manjaro (Arch-Based Linux)
I was reading [the documentation](https://www.jetbrains.com/help/ruby/2021.1/set-up-a-ruby-development-environment.html#prerequisite_dependencies). In Debian based Linux, I have to install `build-essential, libssl-dev`. But, what about Arch-Based Linux? I had tried

```
sudo pacman -Syy build-essential libssl-dev
```

But, unfortunately those packages aren't available. I had tried with `yay` command also. But, I couldn't install them using `yay` also. I had installed `base-devel` also. I was reading [the question](https://bbs.archlinux.org/viewtopic.php?id=122984) also. But, don't need them. PHP works by Lampp/Xampp. But, Ruby needs `build-essential && libssl-dev`. While they aren't available  in Manjaro than, how Ruby programmer works in Manjaro? So, there must be similar package like this.

- I am using Rubymine
- Ruby version : ruby 3.0.1p64 (2021-04-05 revision 0fb782ee38) [x86_64-linux]
- gem version : 3.2.15