<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Python &#8211; Other Things</title>
	<atom:link href="https://blog.adamzolo.com/category/python/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.adamzolo.com</link>
	<description>Blog about Things by Adam Zolotarev</description>
	<lastBuildDate>Fri, 02 Feb 2018 13:25:47 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>
	<item>
		<title>Python with VSCode (using Anaconda)</title>
		<link>https://blog.adamzolo.com/python-vscode-anaconda/</link>
					<comments>https://blog.adamzolo.com/python-vscode-anaconda/#respond</comments>
		
		<dc:creator><![CDATA[Adam Zolo]]></dc:creator>
		<pubDate>Thu, 01 Feb 2018 23:45:40 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<guid isPermaLink="false">http://blog.adamzolo.com/?p=724</guid>

					<description><![CDATA[Let&#8217;s install Anaconda from https://www.anaconda.com/download/ Update your .bashrc or .zshrc with To change VS Code Python version: Install auto-formatting and linting packages Create a Python debug configuration stopOnEntry option is buggy with Python as of this post writing and makes it impossible to create breakpoints &#8211; so we set it to false for now. Setting&#8230;<p><a class="more-link" href="https://blog.adamzolo.com/python-vscode-anaconda/" title="Continue reading &#8216;Python with VSCode (using Anaconda)&#8217;">Continue reading <span class="meta-nav">&#8594;</span></a></p>]]></description>
										<content:encoded><![CDATA[<p>Let&#8217;s install Anaconda from <a href="https://www.anaconda.com/download/" rel="noopener" target="_blank">https://www.anaconda.com/download/</a></p>
<p>Update your .bashrc or .zshrc with </p>
<pre class="brush: plain; title: ; notranslate">
export PATH=&quot;$HOME/anaconda3/bin:$PATH&quot;
</pre>
<p>To change VS Code Python version:</p>
<pre class="brush: plain; title: ; notranslate">
Cmd Shift P -&gt; Python - select interpreter (python 3)
</pre>
<p>Install auto-formatting and linting packages</p>
<pre class="brush: plain; title: ; notranslate">
conda install pylint
conda install autopep8
</pre>
<p>Create a Python debug configuration<br />
stopOnEntry option is buggy with Python as of this post writing and makes it impossible to create breakpoints &#8211; so we set it to false for now.<br />
Setting pythonPath to anaconda only necessary if your default VS code interpreter is different from Anaconda&#8217;s (and assuming you want to use Anaconda&#8217;s interpreter). Otherwise, you can leave it pointing to &#8220;${config:python.pythonPath}&#8221;</p>
<pre class="brush: plain; title: ; notranslate">
{
      &quot;name&quot;: &quot;Python conda&quot;,
      &quot;type&quot;: &quot;python&quot;,
      &quot;request&quot;: &quot;launch&quot;,
      &quot;stopOnEntry&quot;: false,
      &quot;pythonPath&quot;: &quot;~/anaconda3/bin/python&quot;,
      &quot;program&quot;: &quot;${file}&quot;,
      &quot;cwd&quot;: &quot;${workspaceFolder}&quot;,
      &quot;env&quot;: {},
      &quot;envFile&quot;: &quot;${workspaceFolder}/.env&quot;,
      &quot;debugOptions&quot;: &#x5B;&quot;RedirectOutput&quot;],
      &quot;args&quot;: &#x5B;&quot;-i&quot;]
    }
</pre>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.adamzolo.com/python-vscode-anaconda/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
