python - Why does this pip call succeed in Makefile but not via command line? -
i ran across in makefile recently:
develop: pip install "file://`pwd`#egg=myproject"
this works fine when called make develop
when call same command via command-line errors out "no such file or directory: /home/slack/tmp/myproject#egg=myproject'
"
why work when it's in makefile not called explicitly command line?
the file://
bit telling pip install local resource. pwd
command tells local resource in current directory, , tacks on egg called.
i assume make file sets egg naming convention holds lookup, , there may default variables or commands in makefile adjust it.
Comments
Post a Comment