Skip to content

Commit

Permalink
used pip install --user package
Browse files Browse the repository at this point in the history
  • Loading branch information
hiqsol committed Oct 17, 2016
1 parent 9e02ac4 commit 9e216ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/base/BinaryPython.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function install()
$dest = Yii::getAlias('@root/' . $this->name, false);
passthru('/usr/bin/env wget ' . escapeshellarg($this->download) . ' -O ' . $dest, $exitcode);
} else {
$exitcode = $this->controller->passthru('pip', ['install', $this->package]);
$exitcode = $this->controller->passthru('pip', ['install', '--user', $this->package]);
}

return $exitcode;
Expand Down

0 comments on commit 9e216ec

Please sign in to comment.