third_party.pigweed.src/env_setup/virtualenv/init.sh

31 lines
1.0 KiB
Bash
Raw Normal View History

# Copyright 2019 The Pigweed Authors
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
# Sets up Python 3 virtualenv. Requires PW_ROOT and PW_ENVSETUP to be set,
# which setup.sh (up one level from this file) does.
setup_virtualenv () {
local venv
venv="$PW_ROOT/.python3-env"
local requirements_path
requirements_path="$PW_ENVSETUP/virtualenv/requirements.txt"
python3 "$PW_ENVSETUP/virtualenv/init.py" \
--venv_path "$venv" --r $requirements_path && . "$venv/bin/activate"
}
setup_virtualenv
unset -f setup_virtualenv