<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How To Install R Programming Language in Linux	</title>
	<atom:link href="https://www.tecmint.com/install-r-programming-in-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/install-r-programming-in-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Fri, 22 Nov 2024 20:03:39 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Gösta Lilljequist		</title>
		<link>https://www.tecmint.com/install-r-programming-in-linux/comment-page-1/#comment-2244981</link>

		<dc:creator><![CDATA[Gösta Lilljequist]]></dc:creator>
		<pubDate>Fri, 22 Nov 2024 20:03:39 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=49629#comment-2244981</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-r-programming-in-linux/comment-page-1/#comment-2244303&quot;&gt;Ravi Saive&lt;/a&gt;.

@Ravi Saive

R is running properly now :-)

I went through your steps. They all gave back: &quot;Nothing to do&quot;.
So I guess the quite big number of system updates that occurred during the last few days rather did the thing.

Nevertheless, I really appreciate your help.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-r-programming-in-linux/comment-page-1/#comment-2244303">Ravi Saive</a>.</p>
<p>@Ravi Saive</p>
<p>R is running properly now :-)</p>
<p>I went through your steps. They all gave back: &#8220;Nothing to do&#8221;.<br />
So I guess the quite big number of system updates that occurred during the last few days rather did the thing.</p>
<p>Nevertheless, I really appreciate your help.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/install-r-programming-in-linux/comment-page-1/#comment-2244303</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Thu, 21 Nov 2024 07:03:10 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=49629#comment-2244303</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-r-programming-in-linux/comment-page-1/#comment-2242884&quot;&gt;Gösta Lilljequist&lt;/a&gt;.

@Gosta,

It looks like the issue is with the version of &lt;code&gt;libgfortran&lt;/code&gt; required by &lt;code&gt;flexiblas&lt;/code&gt;. Since &lt;code&gt;compat-gcc-8-gfortran&lt;/code&gt; isn’t available in your current repository, you can try the following steps to resolve the issue:

Install the correct version of &lt;code&gt;libgfortran&lt;/code&gt;: 
&lt;pre&gt;
sudo dnf install gcc-gfortran
&lt;/pre&gt;
Next, ensure that the correct version of &lt;code&gt;flexiblas&lt;/code&gt; is installed:
&lt;pre&gt;
sudo dnf install flexiblas
&lt;/pre&gt;
Make sure that your system is up-to-date and has all the necessary dependencies:
&lt;pre&gt;
sudo dnf update
sudo dnf install libgfortran
&lt;/pre&gt;
Once you&#039;ve done this, try running &lt;code&gt;R&lt;/code&gt; again. 

Hopefully, this resolves the error. Let me know how it goes!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-r-programming-in-linux/comment-page-1/#comment-2242884">Gösta Lilljequist</a>.</p>
<p>@Gosta,</p>
<p>It looks like the issue is with the version of <code>libgfortran</code> required by <code>flexiblas</code>. Since <code>compat-gcc-8-gfortran</code> isn’t available in your current repository, you can try the following steps to resolve the issue:</p>
<p>Install the correct version of <code>libgfortran</code>: </p>
<pre>
sudo dnf install gcc-gfortran
</pre>
<p>Next, ensure that the correct version of <code>flexiblas</code> is installed:</p>
<pre>
sudo dnf install flexiblas
</pre>
<p>Make sure that your system is up-to-date and has all the necessary dependencies:</p>
<pre>
sudo dnf update
sudo dnf install libgfortran
</pre>
<p>Once you&#8217;ve done this, try running <code>R</code> again. </p>
<p>Hopefully, this resolves the error. Let me know how it goes!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Gösta Lilljequist		</title>
		<link>https://www.tecmint.com/install-r-programming-in-linux/comment-page-1/#comment-2242884</link>

		<dc:creator><![CDATA[Gösta Lilljequist]]></dc:creator>
		<pubDate>Sat, 16 Nov 2024 22:22:44 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=49629#comment-2242884</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-r-programming-in-linux/comment-page-1/#comment-2241788&quot;&gt;Ravi Saive&lt;/a&gt;.

@Ravi Saive

Thank you so much for your help!

I went through it step by step, but &lt;code&gt;R&lt;/code&gt; still isn’t working.

I think the main issue now is with &lt;strong&gt;step 3&lt;/strong&gt;, the second line: &lt;code&gt;sudo dnf install compat-gcc-8-gfortran&lt;/code&gt;. 

It gives the following error:
&lt;pre&gt;
No match for argument: compat-gcc-8-gfortran Error: Unable to find a match: compat-gcc-8-gfortran
&lt;/pre&gt;
No error messages occurred with any of the other steps, but R still aborts with the message:
&lt;pre&gt;
flexiblas dlopen: /lib64/libgfortran.so.5: version &#039;GFORTRAN_8&#039; not found (required by /usr/lib64/flexiblas//libflexiblas_netlib.so) flexiblas: Failed to load the BLAS fallback library. Abort! Aborted (core dumped)
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-r-programming-in-linux/comment-page-1/#comment-2241788">Ravi Saive</a>.</p>
<p>@Ravi Saive</p>
<p>Thank you so much for your help!</p>
<p>I went through it step by step, but <code>R</code> still isn’t working.</p>
<p>I think the main issue now is with <strong>step 3</strong>, the second line: <code>sudo dnf install compat-gcc-8-gfortran</code>. </p>
<p>It gives the following error:</p>
<pre>
No match for argument: compat-gcc-8-gfortran Error: Unable to find a match: compat-gcc-8-gfortran
</pre>
<p>No error messages occurred with any of the other steps, but R still aborts with the message:</p>
<pre>
flexiblas dlopen: /lib64/libgfortran.so.5: version 'GFORTRAN_8' not found (required by /usr/lib64/flexiblas//libflexiblas_netlib.so) flexiblas: Failed to load the BLAS fallback library. Abort! Aborted (core dumped)
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/install-r-programming-in-linux/comment-page-1/#comment-2241788</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Fri, 15 Nov 2024 04:57:50 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=49629#comment-2241788</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-r-programming-in-linux/comment-page-1/#comment-2241574&quot;&gt;Gösta Liljequist&lt;/a&gt;.

@Gosta,

The error message you&#039;re seeing, specifically &lt;code&gt;GFORTRAN_8&lt;/code&gt; not found, indicates that the installed version of &lt;strong&gt;libgfortran&lt;/strong&gt; does not meet the requirements for &lt;strong&gt;FlexiBLAS&lt;/strong&gt;, which is likely a dependency for R. &lt;strong&gt;FlexiBLAS&lt;/strong&gt; is trying to use a version of &lt;strong&gt;libgfortran&lt;/strong&gt; that isn’t installed on your &lt;strong&gt;AlmaLinux 9&lt;/strong&gt; system.

Here&#039;s a step-by-step approach to troubleshoot and resolve this issue:

&lt;strong&gt;1&lt;/strong&gt;. First, make sure all your system packages are up to date. Sometimes updating can solve compatibility issues.
&lt;pre&gt;
sudo dnf update -y
&lt;/pre&gt;
&lt;strong&gt;2&lt;/strong&gt;. Next, you might need to install the GCC version that includes the correct &lt;strong&gt;libgfortran&lt;/strong&gt; library.
&lt;pre&gt;
sudo dnf install gcc-gfortran
&lt;/pre&gt;
&lt;strong&gt;3&lt;/strong&gt;. Download and install a compatible &lt;strong&gt;libgfortran&lt;/strong&gt; version.
&lt;pre&gt;
sudo dnf install epel-release
sudo dnf install compat-gcc-8-gfortran
&lt;/pre&gt;
&lt;strong&gt;4&lt;/strong&gt;. If you continue to experience issues with &lt;strong&gt;FlexiBLAS&lt;/strong&gt;, you might want to configure it to use a different BLAS library that doesn’t have the same version dependency.
&lt;pre&gt;
sudo update-alternatives --config libblas.so.3
sudo update-alternatives --config liblapack.so.3
&lt;/pre&gt;
&lt;strong&gt;5&lt;/strong&gt;. After completing the above steps, try running R again to see if the error is resolved: 
&lt;pre&gt;
R
&lt;/pre&gt;
&lt;strong&gt;6&lt;/strong&gt;.  If issues persist, you might consider reinstalling &lt;strong&gt;FlexiBLAS&lt;/strong&gt; or &lt;strong&gt;R&lt;/strong&gt;, as an incorrect installation can sometimes cause these issues.
&lt;pre&gt;
sudo dnf reinstall flexiblas
sudo dnf reinstall R
&lt;/pre&gt;
After completing these steps, R should start without the FlexiBLAS error. Let me know if you run into further issues!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-r-programming-in-linux/comment-page-1/#comment-2241574">Gösta Liljequist</a>.</p>
<p>@Gosta,</p>
<p>The error message you&#8217;re seeing, specifically <code>GFORTRAN_8</code> not found, indicates that the installed version of <strong>libgfortran</strong> does not meet the requirements for <strong>FlexiBLAS</strong>, which is likely a dependency for R. <strong>FlexiBLAS</strong> is trying to use a version of <strong>libgfortran</strong> that isn’t installed on your <strong>AlmaLinux 9</strong> system.</p>
<p>Here&#8217;s a step-by-step approach to troubleshoot and resolve this issue:</p>
<p><strong>1</strong>. First, make sure all your system packages are up to date. Sometimes updating can solve compatibility issues.</p>
<pre>
sudo dnf update -y
</pre>
<p><strong>2</strong>. Next, you might need to install the GCC version that includes the correct <strong>libgfortran</strong> library.</p>
<pre>
sudo dnf install gcc-gfortran
</pre>
<p><strong>3</strong>. Download and install a compatible <strong>libgfortran</strong> version.</p>
<pre>
sudo dnf install epel-release
sudo dnf install compat-gcc-8-gfortran
</pre>
<p><strong>4</strong>. If you continue to experience issues with <strong>FlexiBLAS</strong>, you might want to configure it to use a different BLAS library that doesn’t have the same version dependency.</p>
<pre>
sudo update-alternatives --config libblas.so.3
sudo update-alternatives --config liblapack.so.3
</pre>
<p><strong>5</strong>. After completing the above steps, try running R again to see if the error is resolved: </p>
<pre>
R
</pre>
<p><strong>6</strong>.  If issues persist, you might consider reinstalling <strong>FlexiBLAS</strong> or <strong>R</strong>, as an incorrect installation can sometimes cause these issues.</p>
<pre>
sudo dnf reinstall flexiblas
sudo dnf reinstall R
</pre>
<p>After completing these steps, R should start without the FlexiBLAS error. Let me know if you run into further issues!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Gösta Liljequist		</title>
		<link>https://www.tecmint.com/install-r-programming-in-linux/comment-page-1/#comment-2241574</link>

		<dc:creator><![CDATA[Gösta Liljequist]]></dc:creator>
		<pubDate>Thu, 14 Nov 2024 20:29:35 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=49629#comment-2241574</guid>

					<description><![CDATA[I installed &lt;strong&gt;R&lt;/strong&gt; on &lt;strong&gt;AlmaLinux 9&lt;/strong&gt; following the instructions in this article. However, when I try to start &lt;strong&gt;R&lt;/strong&gt;, it fails with the following error message:
&lt;pre&gt;
flexiblas dlopen: /lib64/libgfortran.so.5: version `GFORTRAN_8&#039; not found (required by /usr/lib64/flexiblas/libflexiblas_netlib.so)
flexiblas: Failed to load the BLAS fallback library. Aborted!
&lt;/pre&gt;
System Information:
&lt;pre&gt;
5.14.0-427.42.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Nov 1 14:58:02 EDT 2024 x86_64 x86_64 x86_64 GNU/Linux
&lt;/pre&gt;
]]></description>
			<content:encoded><![CDATA[<p>I installed <strong>R</strong> on <strong>AlmaLinux 9</strong> following the instructions in this article. However, when I try to start <strong>R</strong>, it fails with the following error message:</p>
<pre>
flexiblas dlopen: /lib64/libgfortran.so.5: version `GFORTRAN_8' not found (required by /usr/lib64/flexiblas/libflexiblas_netlib.so)
flexiblas: Failed to load the BLAS fallback library. Aborted!
</pre>
<p>System Information:</p>
<pre>
5.14.0-427.42.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Nov 1 14:58:02 EDT 2024 x86_64 x86_64 x86_64 GNU/Linux
</pre>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
