You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Input: bash ubuntu_install calls Makefile in nuweb, which calls generated script env/bin/make_infrastructure. This file checks for correct versions of languages, including python3.6.
Problem: It claims I don't have python3.6 installed on my system.
make_infrastructure Wed Mar 14 16:08:25 UTC 2018: Python
Please install Python version 3.6
Makefile:115: recipe for target 'install' failed
make: *** [install] Error 4
But I do have python3.6 installed; python3 --version returns:
Python 3.6.4
If I insert echo ($python3 --version) and call make_infrastructure directly, it tells me that python3 does not exist:
make_infrastructure Wed Mar 14 16:17:01 UTC 2018: Python
./env/bin/make_infrastructure: line 185: python3: command not found
The text was updated successfully, but these errors were encountered:
wmkouw
changed the title
nlpp v4.0.0.0 python3.6 check fails even if python3.6 is installed on system
nlpp v4.0.0.0 python version check fails
Mar 28, 2018
Goal: construct NewsReader pipeline through nlpp
Input:
bash ubuntu_install
calls Makefile in nuweb, which calls generated scriptenv/bin/make_infrastructure
. This file checks for correct versions of languages, including python3.6.Problem: It claims I don't have python3.6 installed on my system.
But I do have python3.6 installed;
python3 --version
returns:If I insert
echo ($python3 --version)
and callmake_infrastructure
directly, it tells me that python3 does not exist:The text was updated successfully, but these errors were encountered: