Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Parts of this have been mentioned before, but in a nutshell this is what worked for my environment where I have multiple Python installs and my global OS environment set-up to point to a <em>different</em> install than the one I attempt to work with when encountering the problem.</p> <p>Make sure your (local or global) environment is <em>fully</em> set-up to point to the install you aim to work with, e.g. you have two (or more) installs of, let's say a python27 and python33 (sorry these are windows paths but the following should be valid for equivalent UNIX-style paths just as well, please let me know about anything I'm missing here (probably the DLLs path might differ)):</p> <p><code>C:\python27_x86</code></p> <p><code>C:\python33_x64</code></p> <p>Now, if you intend to work with your python33 install but your global environment is pointing to python27, make sure you update your environment as such (while <code>PATH</code> and <code>PYTHONHOME</code> <em>may</em> be optional (e.g. if you temporarily work in a local shell)):</p> <p><code>PATH="C:\python33_x64;%PATH%"</code></p> <p><code>PYTHONPATH="C:\python33_x64\DLLs;C:\python33_x64\Lib;C:\python33_x64\Lib\site-packages"</code></p> <p><code>PYTHONHOME=C:\python33_x64</code></p> <p>Note, that you might need/want to append any other library paths to your <code>PYTHONPATH</code> if required by your development environment, but having your <code>DLLs</code>, <code>Lib</code> and <code>site-packages</code> properly set-up is of prime importance.</p> <p>Hope this helps.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload