Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #100017

Re: Problem in pip

From Zachary Ware <zachary.ware+pylist@gmail.com>
Newsgroups comp.lang.python
Subject Re: Problem in pip
Date 2015-12-04 16:41 -0600
Message-ID <mailman.209.1449268900.14615.python-list@python.org> (permalink)
References <CAPzk-rKDdNy9v88JKswHuUbAtOjfq-QMZOAtQwzJ1KYAbYXX6A@mail.gmail.com>

Show all headers | View raw


On Fri, Dec 4, 2015 at 12:02 PM, Ali Zarkesh <zarkeshali81@gmail.com> wrote:
> My pip can't download or upgrade anything
> I use python 3.5 (win 32) and my pip version is 7.1.2.
> The error message is this:
>
> Exception:
> Traceback (most recent call last):
> ...
> PermissionError: [Errno 13] Permission denied: 'c:\program files\python
> 3.5\Lib\site-packages\PyWin32.chm'
>
> What do I do?

It looks like you're trying to install in the global environment,
which requires administrative privileges.  You'll either need to do
the above from an Administrative Command Prompt or create a virtual
environment (py -3.5 -m venv <path to where you want the virtual
environment>) and try it using the pip from the venv.

Hope this helps,
-- 
Zach

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: Problem in pip Zachary Ware <zachary.ware+pylist@gmail.com> - 2015-12-04 16:41 -0600

csiph-web