Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #100017 > unrolled thread
| Started by | Zachary Ware <zachary.ware+pylist@gmail.com> |
|---|---|
| First post | 2015-12-04 16:41 -0600 |
| Last post | 2015-12-04 16:41 -0600 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: Problem in pip Zachary Ware <zachary.ware+pylist@gmail.com> - 2015-12-04 16:41 -0600
| From | Zachary Ware <zachary.ware+pylist@gmail.com> |
|---|---|
| Date | 2015-12-04 16:41 -0600 |
| Subject | Re: Problem in pip |
| Message-ID | <mailman.209.1449268900.14615.python-list@python.org> |
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 top | Article view | comp.lang.python
csiph-web