<?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 Latest Python from Source in Linux	</title>
	<atom:link href="https://www.tecmint.com/install-python-in-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/install-python-in-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Sat, 30 Mar 2024 07:51:43 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: ajay rajbahr		</title>
		<link>https://www.tecmint.com/install-python-in-linux/comment-page-1/#comment-2153410</link>

		<dc:creator><![CDATA[ajay rajbahr]]></dc:creator>
		<pubDate>Sat, 30 Mar 2024 07:51:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=25061#comment-2153410</guid>

					<description><![CDATA[Conda is a climate supervisor and a bundle director that is packaged into a solitary bundle. Conditions are an ideal approach to having various forms of similar programming on a similar PC. They are fundamental when various applications rely upon various renditions of a typical reliance. 

A climate administrator, like Conda, establishes various ways for every climate. A climate introduces bundles into and runs bundles in just its own way, which is not quite the same as the ways of different conditions. Subsequently, conditions are autonomous of one another. 

for more info pls visit our website: https://conda.io/projects/conda/en/latest/user-guide/install/linux.html]]></description>
			<content:encoded><![CDATA[<p>Conda is a climate supervisor and a bundle director that is packaged into a solitary bundle. Conditions are an ideal approach to having various forms of similar programming on a similar PC. They are fundamental when various applications rely upon various renditions of a typical reliance. </p>
<p>A climate administrator, like Conda, establishes various ways for every climate. A climate introduces bundles into and runs bundles in just its own way, which is not quite the same as the ways of different conditions. Subsequently, conditions are autonomous of one another. </p>
<p>for more info pls visit our website: <a target="_blank" href="https://conda.io/projects/conda/en/latest/user-guide/install/linux.html" rel="nofollow ugc">https://conda.io/projects/conda/en/latest/user-guide/install/linux.html</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Rob T.		</title>
		<link>https://www.tecmint.com/install-python-in-linux/comment-page-1/#comment-1023650</link>

		<dc:creator><![CDATA[Rob T.]]></dc:creator>
		<pubDate>Tue, 14 Aug 2018 17:36:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=25061#comment-1023650</guid>

					<description><![CDATA[Installing from source as *root* is usually a bad idea. There is no uninstall step.  You are likely to overwrite packages maintained by your system package manager (yum, apt, etc.)  On Red Hat you can break yum which is difficult to recover from.

Install packages if they are available.  There are several choices of Python 3 packages for most distributions.

Only build from source if you have to for some reason and then install someplace other than /usr.]]></description>
			<content:encoded><![CDATA[<p>Installing from source as *root* is usually a bad idea. There is no uninstall step.  You are likely to overwrite packages maintained by your system package manager (yum, apt, etc.)  On Red Hat you can break yum which is difficult to recover from.</p>
<p>Install packages if they are available.  There are several choices of Python 3 packages for most distributions.</p>
<p>Only build from source if you have to for some reason and then install someplace other than /usr.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: relative		</title>
		<link>https://www.tecmint.com/install-python-in-linux/comment-page-1/#comment-1008980</link>

		<dc:creator><![CDATA[relative]]></dc:creator>
		<pubDate>Sun, 01 Jul 2018 16:13:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=25061#comment-1008980</guid>

					<description><![CDATA[You can rest assured that when you say &quot;You can rest assured&quot; in the future it will not work as you expect it to due mostly to bad assumptions such as in this case (not that it matters but using a headless latest generic installed &lt;strong&gt;openmediavault&lt;/strong&gt;) we need to change the basic commands for the shell version &lt;strong&gt;apt/apt-get&lt;/strong&gt; as assuming there&#039;s a GUI  application installed &lt;strong&gt;aptitude/yum&lt;/strong&gt; etc will stop the beginner in their tracks as per all current so called developers not being end user/home user friendly etc...

so anyway, 
&lt;pre&gt;
apt -y groupinstall development
apt -y install zlib-devel
&lt;/pre&gt;
In &lt;strong&gt;Debian&lt;/strong&gt; we will need to install gcc, make, and the zlib compression / decompression library:
&lt;pre&gt;
apt-get  -y install gcc make zlib1g-dev
&lt;/pre&gt;
To install Python 3.6, run the following commands:
&lt;pre&gt;
wget https://www.python.org/ftp/python/3.6.3/Python-3.6.3.tar.xz
tar xJf Python-3.6.3.tar.xz
cd Python-3.6.3
./configure
make -j4
make install
&lt;/pre&gt;
Now relax and go grab a sandwich because this may take a while. When the installation is complete, use which to verify the location of the main binary:
&lt;pre&gt;
# which python3
# python3 -V
&lt;/pre&gt;
before
&lt;pre&gt;
/usr/local/bin/python3
&lt;/pre&gt;
after 
&lt;pre&gt;
/usr/local/bin/python3
&lt;/pre&gt;
before 
&lt;pre&gt;
python3 -V
Python 3.5.3
&lt;/pre&gt;
after 
&lt;pre&gt;
root@openmedia:~/Python-3.6.3# python3 -V
Python 3.5.3
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>You can rest assured that when you say &#8220;You can rest assured&#8221; in the future it will not work as you expect it to due mostly to bad assumptions such as in this case (not that it matters but using a headless latest generic installed <strong>openmediavault</strong>) we need to change the basic commands for the shell version <strong>apt/apt-get</strong> as assuming there&#8217;s a GUI  application installed <strong>aptitude/yum</strong> etc will stop the beginner in their tracks as per all current so called developers not being end user/home user friendly etc&#8230;</p>
<p>so anyway, </p>
<pre>
apt -y groupinstall development
apt -y install zlib-devel
</pre>
<p>In <strong>Debian</strong> we will need to install gcc, make, and the zlib compression / decompression library:</p>
<pre>
apt-get  -y install gcc make zlib1g-dev
</pre>
<p>To install Python 3.6, run the following commands:</p>
<pre>
wget https://www.python.org/ftp/python/3.6.3/Python-3.6.3.tar.xz
tar xJf Python-3.6.3.tar.xz
cd Python-3.6.3
./configure
make -j4
make install
</pre>
<p>Now relax and go grab a sandwich because this may take a while. When the installation is complete, use which to verify the location of the main binary:</p>
<pre>
# which python3
# python3 -V
</pre>
<p>before</p>
<pre>
/usr/local/bin/python3
</pre>
<p>after </p>
<pre>
/usr/local/bin/python3
</pre>
<p>before </p>
<pre>
python3 -V
Python 3.5.3
</pre>
<p>after </p>
<pre>
root@openmedia:~/Python-3.6.3# python3 -V
Python 3.5.3
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Priyanshu Kumar		</title>
		<link>https://www.tecmint.com/install-python-in-linux/comment-page-1/#comment-1006920</link>

		<dc:creator><![CDATA[Priyanshu Kumar]]></dc:creator>
		<pubDate>Wed, 27 Jun 2018 07:11:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=25061#comment-1006920</guid>

					<description><![CDATA[Such a great tutorial, thanks]]></description>
			<content:encoded><![CDATA[<p>Such a great tutorial, thanks</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Sixpack Kid		</title>
		<link>https://www.tecmint.com/install-python-in-linux/comment-page-1/#comment-988333</link>

		<dc:creator><![CDATA[Sixpack Kid]]></dc:creator>
		<pubDate>Tue, 01 May 2018 04:29:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=25061#comment-988333</guid>

					<description><![CDATA[On &lt;strong&gt;OpenSUSE&lt;/strong&gt;, you might need to install &lt;strong&gt;readline&lt;/strong&gt; package as well.
&lt;pre&gt;
$ sudo zypper install zlib-devel
$ sudo zypper install readline-devel
$ ./configure --enable-optimizations
$ make
$ sudo make install
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>On <strong>OpenSUSE</strong>, you might need to install <strong>readline</strong> package as well.</p>
<pre>
$ sudo zypper install zlib-devel
$ sudo zypper install readline-devel
$ ./configure --enable-optimizations
$ make
$ sudo make install
</pre>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
