Skip to content

Commit

Permalink
Merge pull request timvideos#484 from antmicro/fix_python_modules_ins…
Browse files Browse the repository at this point in the history
…tallation

download-env: Fix the installation of some python modules
  • Loading branch information
mithro authored Jul 15, 2020
2 parents bea94ce + f6dda4b commit 8126cd4
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions scripts/download-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -654,24 +654,6 @@ echo "Installing robotframework (python module)"
pip install robotframework==3.0.4
check_import robot

(
cd $THIRD_DIR

cd pythondata-software-compiler_rt
echo "Installing pythondata-software-compiler_rt (local python module)"
python setup.py develop
cd ..

check_import pythondata_software_compiler_rt


cd pythondata-cpu-$CPU
echo "Installing pythondata-cpu-$CPU (local python module)"
python setup.py develop
cd ..

check_import pythondata_cpu_$CPU
)

# git commands
echo ""
Expand Down Expand Up @@ -711,6 +693,25 @@ for LITE in $LITE_REPOS; do
check_import $LITE_MOD
done

(
cd $THIRD_DIR

cd pythondata-software-compiler_rt
echo "Installing pythondata-software-compiler_rt (local python module)"
python setup.py develop
cd ..

check_import pythondata_software_compiler_rt


cd pythondata-cpu-$CPU
echo "Installing pythondata-cpu-$CPU (local python module)"
python setup.py develop
cd ..

check_import pythondata_cpu_$CPU
)

echo "-----------------------"
echo ""
echo "Completed. To load environment:"
Expand Down

0 comments on commit 8126cd4

Please sign in to comment.