Are you using OS X and Homebrew? The Homebrew python page https://github.com/Homebrew/brew/blob/master/docs/Homebrew-and-Python.md calls out a known issue with pip and a work around.
Worked for me.
You can make this "empty prefix" the default by adding a ~/.pydistutils.cfg file with the following contents:
[install] prefix=
Edit: The Homebrew page was later changed to recommend passing --prefix
on the command line, as discussed in the comments below. Here is the last version which contained that text. Unfortunately this only works for sdists, not wheels.
The issue was reported to pip, which later fixed it for --user
. That's probably why the section has now been removed from the Homebrew page. However, the problem still occurs when using --target
as in the question above.
I believe there is a simpler solution to this problem (Homebrew's Python on macOS) that won't break your normal pip operations.
All you have to do is to create a setup.cfg
file at the root directory of your project, usually where your main __init__.py
or executable py file is. So if the root folder of your project is: /path/to/my/project/
, create a setup.cfg
file in there and put the magic words inside:
[install]
prefix=
OK, now you sould be able to run pip's commands for that folder:
pip install package -t /path/to/my/project/
This command will run gracefully for that folder only. Just copy setup.cfg
to whatever other projects you might have. No need to write a .pydistutils.cfg
on your home directory.
After you are done installing the modules, you may remove setup.cfg
.
On OSX(mac), assuming a project folder called /var/myproject
cd /var/myproject
setup.cfg
and add
[install]
prefix=
pip install <packagename> -t .
Another solution* for Homebrew users is simply to use a virtualenv
.
Of course, that may remove the need for the target directory anyway - but even if it doesn't, I've found --target
works by default (as in, without creating/modifying a config file) when in a virtual environment.
*I say solution; perhaps it's just another motivation to meticulously use venvs...
I hit errors with the other recommendations around --install-option="--prefix=lib"
. The only thing I found that worked is using PYTHONUSERBASE
as described here.
export PYTHONUSERBASE=lib
pip install -I flask-restful --user
this is not exactly the same as --target
, but it does the trick for me in any case.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With