Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mac/env-setup-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ setup_app_python() {
detect_setup_python_env

# Install dependencies
pip install --only-binary grpcio -r requirements.txt >> "$NOW_RUN_LOG_FILE" 2>&1
pip3 install --only-binary grpcio -r requirements.txt >> "$NOW_RUN_LOG_FILE" 2>&1
log_success "Dependencies installed"

local app_url=$BROWSERSTACK_APP
Expand Down
4 changes: 2 additions & 2 deletions win/env-setup-run.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function Setup-Web-Python {
$venvPy = Get-VenvPython -VenvDir $venv

Log-Line "ℹ️ Installing dependencies" $GLOBAL_LOG
[void](Invoke-External -Exe $venvPy -Arguments @("-m","pip","install","-r","requirements.txt") -LogFile $LogFile -WorkingDirectory $TARGET)
[void](Invoke-External -Exe $venvPy -Arguments @("-m","pip3","install","-r","requirements.txt") -LogFile $LogFile -WorkingDirectory $TARGET)
Log-Line "✅ Dependencies installed" $GLOBAL_LOG

$env:PATH = (Join-Path $venv 'Scripts') + ";" + $env:PATH
Expand Down Expand Up @@ -314,7 +314,7 @@ function Setup-Mobile-Python {
$venvPy = Get-VenvPython -VenvDir $venv

Log-Line "ℹ️ Installing dependencies" $GLOBAL_LOG
[void](Invoke-External -Exe $venvPy -Arguments @("-m","pip","install","-r","requirements.txt") -LogFile $LogFile -WorkingDirectory $TARGET)
[void](Invoke-External -Exe $venvPy -Arguments @("-m","pip3","install","-r","requirements.txt") -LogFile $LogFile -WorkingDirectory $TARGET)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove change for windows

Log-Line "✅ Dependencies installed" $GLOBAL_LOG

$env:PATH = (Join-Path $venv 'Scripts') + ";" + $env:PATH
Expand Down
Loading