blob: 8f6fffbf52a1e1a3b0706bde7010b18966511f72 [file] [log] [blame]
Chip Bolingf5af85d2019-02-12 15:36:17 -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
29export PYTHONPATH=$VOLTHA_BASE/$VENVDIR/lib/python2.7/site-packages:$PYTHONPATH:$VOLTHA_BASE:$VOLTHA_BASE/cli:$VOLTHA_BASE/protos/third_party
Chip Bolingd2d7a4d2019-03-14 14:34:56 -050030export PATH=$VOLTHA_BASE/bin:$VOLTHA_BASE/bin/k8s:$PATH