mirror of
https://github.com/YunoHost-Apps/yunorunner_ynh.git
synced 2024-09-03 20:36:13 +02:00
fix websocket uninstall
This commit is contained in:
parent
ce2ac28d0a
commit
4ec77c8cb9
2 changed files with 2 additions and 2 deletions
|
@ -127,7 +127,7 @@ pushd $final_path
|
|||
virtualenv -p $($final_path/.pythonz/bin/pythonz locate 3.6.6) ve3
|
||||
ve3/bin/pip3 install -r requirements.txt
|
||||
#Fix current websocket version error (2019-02-14)
|
||||
ve3/bin/pip3 -y uninstall websockets
|
||||
ve3/bin/pip3 uninstall -y websockets
|
||||
ve3/bin/pip3 install 'websockets>=6.0,<7.0'
|
||||
popd
|
||||
|
||||
|
|
|
@ -135,7 +135,7 @@ systemctl daemon-reload
|
|||
#=================================================
|
||||
|
||||
pushd $final_path
|
||||
ve3/bin/pip3 -y uninstall websockets
|
||||
ve3/bin/pip3 uninstall -y websockets
|
||||
ve3/bin/pip3 install 'websockets>=6.0,<7.0'
|
||||
popd
|
||||
|
||||
|
|
Loading…
Reference in a new issue