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
in an Ubuntu18.04 container, I keep getting this error:
* What went wrong:
A problem occurred evaluating root project 'example-project'.
> Unable to find or execute python
I tried install python3.5, 3.6 and 3.8. but only python3.7 works.
I know the work around would be setting systemPythonInterpreter = file("/usr/bin/python3"). But it's not portable: works on ubuntu but doesn't work on my mac (which has different path: /usr/local/bin/python3)
I'd be appreciate if someone can look at the issue and point out why is it the case. I'm not familiar with kotlin so I got very impatient when I look at the code base..
I have reproduced this issue in example-project with this Dockerfile and build.gradle (the original build.gradle had many errors) Dockerfile:
FROM ubuntu:18.04
RUN apt update && apt install python3-distutils python3 vim git openjdk-8-jdk gradle -y
RUN git clone https://github.com/linkedin/pygradle.git
COPY build.gradle /pygradle/examples/example-project/
CMD ["bash"]
in an Ubuntu18.04 container, I keep getting this error:
I tried install python3.5, 3.6 and 3.8. but only python3.7 works.
I know the work around would be setting systemPythonInterpreter = file("/usr/bin/python3"). But it's not portable: works on ubuntu but doesn't work on my mac (which has different path: /usr/local/bin/python3)
I'd be appreciate if someone can look at the issue and point out why is it the case. I'm not familiar with kotlin so I got very impatient when I look at the code base..
I have reproduced this issue in example-project with this Dockerfile and build.gradle (the original build.gradle had many errors)
Dockerfile:
build.gradle
The text was updated successfully, but these errors were encountered: