Closed attilagk closed 5 years ago
Thanks @attilagk for reporting the issue! I created a Jira ticket to track engineering work on this issue: https://sagebionetworks.jira.com/browse/SYNR-1394
But
setuptools
is in fact installed both for python2.7 and for python3.6; I verified this withpip show setuptools
andpip3 show setuptools
and I canimport setuptools
in my interactive Python shell.
synapser
installs and manages its own Python environment. This environment is separated from user's Python environment. In addition, Python is not installed as executable in this environment, but is loaded as dynamic library at runtime. So the commands above only reveal what are in the user's Python environment and not what is available in synapser
's Python environment.
@attilagk, could you please help me check to see if you can successfully install PythonEmbedInR
:
install.packages("PythonEmbedInR", repos=c("http://cran.fhcrc.org", "https://sage-bionetworks.github.io/ran"))
Hi @kimyen! I could install not only PythonEmbedInR
but subsequently also synapser
. So this solved the problem. Thanks!
Description of the problem
Installation fails with
ImportError
ininstallPythonClient.py
on R 3.5.2, ubuntu 18.04. The error message saysNo module named 'setuptools'
. Butsetuptools
is in fact installed both for python2.7 and for python3.6; I verified this withpip show setuptools
andpip3 show setuptools
and I canimport setuptools
in my interactive Python shell.Details
Below is the full output of
install.packages
Output of
sessionInfo()