blob: aeb4a1fc79ba751d38bb9f37e3723808db3d556c [file] [log] [blame]
Chip Boling67b674a2019-02-08 11:42:18 -06001# Copyright 2017-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14# sourcing this file is needed to make local development and integration testing work
15export VOLTHA_BASE=${PWD}
16
17# load local python virtualenv if exists, otherwise create it
18VENVDIR="venv-$(uname -s | tr '[:upper:]' '[:lower:]')"
19if [ ! -e "${VENVDIR}/.built" ]; then
20 echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
21 echo "Initializing OS-appropriate virtual env."
22 echo "This will take a few minutes."
23 echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
24 make venv
25fi
26. ${VENVDIR}/bin/activate
27
28# add top-level voltha dir to pythonpath
Chip Bolingce2daf62019-02-12 13:53:39 -060029export PYTHONPATH=${VOLTHA_BASE}/${VENVDIR}/lib/python2.7/site-packages:${VOLTHA_BASE}/pyvoltha:${VOLTHA_BASE}/pyvoltha/protos/third_party