Path: csiph.com!usenet.pasdenom.info!aioe.org!.POSTED!not-for-mail From: Marco Buttu Newsgroups: comp.lang.python Subject: Re: python33.lib missing for build_ext in venv environment Date: Mon, 14 Oct 2013 18:01:33 +0200 Organization: Aioe.org NNTP Server Lines: 21 Message-ID: <525C155D.4050006@gmail.com> References: NNTP-Posting-Host: Zaj2x0c6hH7gRtbXC3UOcw.user.speranza.aioe.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: abuse@aioe.org User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:16.0) Gecko/20121010 Thunderbird/16.0.1 X-Notice: Filtered by postfilter v. 0.8.2 Xref: csiph.com comp.lang.python:56812 On 10/14/2013 05:17 PM, Robin Becker wrote: > I'm trying to port reportlab extensions to Python 3.3. On windows I get > a missing library error when trying to build/install the trial reportlab > in a virtual environment eg This is my configuration file: $ cat myvenv/pyvenv.cfg home = /usr/local/bin include-system-site-packages = false version = 3.4.0 In this case (default), the site-package directory is not included in the PYTHONPATH. If you want to include it, set: include-system-site-packages = true -- Marco Buttu