Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the nonpip builds for MacOS. #50185

Merged
merged 1 commit into from Jun 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion tensorflow/tools/ci_build/rel/macos/cpu_py36_nonpip.sh
Expand Up @@ -27,7 +27,7 @@ python3.6 -m virtualenv tf_build_env --system-site-packages
source tf_build_env/bin/activate

# Install macos pip dependencies
install_macos_pip_deps sudo pip3.6
install_macos_pip_deps virtualenv

# Run configure.
export TF_NEED_CUDA=0
Expand Down
2 changes: 1 addition & 1 deletion tensorflow/tools/ci_build/rel/macos/cpu_py37_nonpip.sh
Expand Up @@ -27,7 +27,7 @@ python -m virtualenv tf_build_env --system-site-packages
source tf_build_env/bin/activate

# Install macos pip dependencies
install_macos_pip_deps sudo pip3.7
install_macos_pip_deps virtualenv

# Run configure.
export TF_NEED_CUDA=0
Expand Down
2 changes: 1 addition & 1 deletion tensorflow/tools/ci_build/rel/macos/cpu_py38_nonpip.sh
Expand Up @@ -27,7 +27,7 @@ python -m virtualenv tf_build_env --system-site-packages
source tf_build_env/bin/activate

# Install macos pip dependencies
install_macos_pip_deps sudo pip3.8
install_macos_pip_deps virtualenv

# Run configure.
export TF_NEED_CUDA=0
Expand Down