mirror of
https://github.com/YunoHost-Apps/ffsync_ynh.git
synced 2024-09-03 18:26:38 +02:00
Fix issue don't find virtualenv command
This commit is contained in:
parent
ddd514a1fa
commit
dde9196c65
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ install_sources() {
|
||||||
ynh_setup_source --dest_dir "$final_path"
|
ynh_setup_source --dest_dir "$final_path"
|
||||||
|
|
||||||
# pip installation
|
# pip installation
|
||||||
virtualenv --python=$(which pypy | head -n 1) "$final_path/local"
|
python3 -m virtualenv --python=$(which pypy | head -n 1) "$final_path/local"
|
||||||
# Install manually pip v20.1 because the installed version from the system don't work any more with pyp v2.7
|
# Install manually pip v20.1 because the installed version from the system don't work any more with pyp v2.7
|
||||||
cp -r ../sources/pip_20.1/. $final_path/local/site-packages/pip
|
cp -r ../sources/pip_20.1/. $final_path/local/site-packages/pip
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue