-
Notifications
You must be signed in to change notification settings - Fork 330
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
R Studio numpy version #436
Comments
Can you please share what the output of the following is?
It's more likely that reticulate is unable to find or load numpy during initialization for some reason. |
For reference I have:
|
Thanks for the question, things getting strange here... `> library(reticulate)
python versions found: |
just adding the call stack from R-Studio `Error in py_call_impl(callable, dots$args, dots$keywords) : Hide Traceback Rerun with Debug |
I see in |
sorry, if things are getting confused!
$version but just to get another error: |
Maybe this issue can be referenced to #367. |
I find the solution from #367 . you can try: Or load R/Rstudio from a conda command prompt that has already set the PATH correctly. |
Please refer to the following stack overflow message
https://stackoverflow.com/questions/51541031/numpy-version-is-not-satisfied-for-tensorflow
Error in py_dict_impl(keys, values, convert = convert) : Evaluation error: Required version of NumPy not available: installation of Numpy >= 1.6 not found
The issue seems to be here:
# check numpy version and provide a load error message if we don't satisfy it if (is.null(config$numpy) || config$numpy$version < "1.6") numpy_load_error <- "installation of Numpy >= 1.6 not found" else
Please note, that the version is found in R, there seems just to be a difficulty to interpret the version w/ 2 dots. Please see the follwing output from R
` np <- reticulate::import("numpy")
Hence there is no env/path issue!
I would compile a new version, if I would know, how to clone and compile in Windows for Windows 10. When I installed it, it did compile by itself (hence I have the necessary tools installed as cc, make etc. but I don't know, how to use them in windows.
Thanks
The text was updated successfully, but these errors were encountered: