You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
649 B
26 lines
649 B
9 years ago
|
---
|
||
|
layout: post
|
||
|
title: "OSX El Capitan: pip install virtualenvwrapper error"
|
||
|
author:
|
||
|
display_name: sipp11
|
||
|
login: sipp11
|
||
|
email: sipp11@gmail.com
|
||
|
url: ''
|
||
|
author_login: sipp11
|
||
|
author_email: sipp11@gmail.com
|
||
|
date: Oct 15, 2015
|
||
|
tags:
|
||
|
- python
|
||
|
- error
|
||
|
---
|
||
|
|
||
|
I faced the problem that `pip` had no permission over some weird directories and installation failed. That happened with me when `pip install virtualenvwrapper`
|
||
|
|
||
|
To make it work, dealing with its dependancies manually is a must.
|
||
|
|
||
|
sudo pip install pbr
|
||
|
sudo pip install --no-deps stevedore
|
||
|
sudo pip install --no-deps virtualenvwrapper
|
||
|
|
||
|
Your `virtualenvwrapper` should work as it should.
|