<?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: Pyenv &#8211; Install Multiple Python Versions for Specific Project	</title>
	<atom:link href="https://www.tecmint.com/pyenv-install-and-manage-multiple-python-versions-in-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/pyenv-install-and-manage-multiple-python-versions-in-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Tue, 27 Jun 2023 16:27:50 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Yasar		</title>
		<link>https://www.tecmint.com/pyenv-install-and-manage-multiple-python-versions-in-linux/comment-page-1/#comment-2029806</link>

		<dc:creator><![CDATA[Yasar]]></dc:creator>
		<pubDate>Tue, 27 Jun 2023 16:27:50 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=29920#comment-2029806</guid>

					<description><![CDATA[Some times &lt;strong&gt;_lzma&lt;/strong&gt; might not be available in your machine, do install via below commands.

For ubuntu: &lt;code&gt;sudo apt-get install liblzma-dev&lt;/code&gt;

For centos: &lt;code&gt;yum install -y xz-devel&lt;/code&gt;]]></description>
			<content:encoded><![CDATA[<p>Some times <strong>_lzma</strong> might not be available in your machine, do install via below commands.</p>
<p>For ubuntu: <code>sudo apt-get install liblzma-dev</code></p>
<p>For centos: <code>yum install -y xz-devel</code></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: abdallah		</title>
		<link>https://www.tecmint.com/pyenv-install-and-manage-multiple-python-versions-in-linux/comment-page-1/#comment-1724327</link>

		<dc:creator><![CDATA[abdallah]]></dc:creator>
		<pubDate>Sun, 20 Feb 2022 17:40:10 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=29920#comment-1724327</guid>

					<description><![CDATA[Line  &lt;strong&gt;eval &quot;$(pyenv init -)&quot;&lt;/strong&gt; in the code snippet below should be changed to eval &lt;strong&gt;&quot;$(pyenv init --path)&quot;&lt;/strong&gt; in order to add the &lt;strong&gt;.shims&lt;/strong&gt; at the beginning in PATH variable 

So
&lt;pre&gt;
## pyenv configs
export PYENV_ROOT=&quot;$HOME/.pyenv&quot;
export PATH=&quot;$PYENV_ROOT/bin:$PATH&quot;

if command -v pyenv 1&#062;/dev/null 2&#062;&#038;1; then
  eval &quot;$(pyenv init -)&quot;
fi
&lt;/pre&gt;
Sould be 
&lt;pre&gt;
## pyenv configs
export PYENV_ROOT=&quot;$HOME/.pyenv&quot;
export PATH=&quot;$PYENV_ROOT/bin:$PATH&quot;

if command -v pyenv 1&#062;/dev/null 2&#062;&#038;1; then
  eval &quot;$(pyenv init --path)&quot;
fi
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>Line  <strong>eval &#8220;$(pyenv init -)&#8221;</strong> in the code snippet below should be changed to eval <strong>&#8220;$(pyenv init &#8211;path)&#8221;</strong> in order to add the <strong>.shims</strong> at the beginning in PATH variable </p>
<p>So</p>
<pre>
## pyenv configs
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"

if command -v pyenv 1&gt;/dev/null 2&gt;&amp;1; then
  eval "$(pyenv init -)"
fi
</pre>
<p>Sould be </p>
<pre>
## pyenv configs
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"

if command -v pyenv 1&gt;/dev/null 2&gt;&amp;1; then
  eval "$(pyenv init --path)"
fi
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Sachin Myneni		</title>
		<link>https://www.tecmint.com/pyenv-install-and-manage-multiple-python-versions-in-linux/comment-page-1/#comment-1556960</link>

		<dc:creator><![CDATA[Sachin Myneni]]></dc:creator>
		<pubDate>Thu, 29 Jul 2021 17:37:36 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=29920#comment-1556960</guid>

					<description><![CDATA[Hello,

This link came up first in my google search for installing and using pyenv on CentOS and I hit a bug in the article.

The path should have:
&lt;pre&gt;
export PATH=&quot;$PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH&quot;
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>Hello,</p>
<p>This link came up first in my google search for installing and using pyenv on CentOS and I hit a bug in the article.</p>
<p>The path should have:</p>
<pre>
export PATH="$PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH"
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: paul		</title>
		<link>https://www.tecmint.com/pyenv-install-and-manage-multiple-python-versions-in-linux/comment-page-1/#comment-1333167</link>

		<dc:creator><![CDATA[paul]]></dc:creator>
		<pubDate>Tue, 12 May 2020 15:44:02 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=29920#comment-1333167</guid>

					<description><![CDATA[Thanks for having this useful article online.]]></description>
			<content:encoded><![CDATA[<p>Thanks for having this useful article online.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aaron Kili		</title>
		<link>https://www.tecmint.com/pyenv-install-and-manage-multiple-python-versions-in-linux/comment-page-1/#comment-1143841</link>

		<dc:creator><![CDATA[Aaron Kili]]></dc:creator>
		<pubDate>Wed, 01 May 2019 05:40:48 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=29920#comment-1143841</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/pyenv-install-and-manage-multiple-python-versions-in-linux/comment-page-1/#comment-1141361&quot;&gt;jaboneros&lt;/a&gt;.

@Janoneros

Thanks for sharing this, we are grateful.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/pyenv-install-and-manage-multiple-python-versions-in-linux/comment-page-1/#comment-1141361">jaboneros</a>.</p>
<p>@Janoneros</p>
<p>Thanks for sharing this, we are grateful.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
