Post History
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 ...
#5: Post edited
- 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
- 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
- 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
- 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
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