Giter VIP home page Giter VIP logo

Comments (4)

t-kalinowski avatar t-kalinowski commented on July 24, 2024

Thanks for opening. I haven't seen this error before.

My best guess is that reinstalling is forcing some dll's to be reloaded, which is fixing the error.

If you set PATH or any other envvar after initializing Python, the Python session will not see those env vars. You would need to independently also set in Python with import("os")$environ$update(...), or call R's Sys.setenv() before initializing Python.

Does swapping the order of your initialization commands fix the issue?

from reticulate.

andrew-caudillo avatar andrew-caudillo commented on July 24, 2024

@t-kalinowski ,
Thank you for getting back.

If I understand correctly, you are saying to do this:

reticulate::use_python('C://ArcGIS//Pro//bin//Python//envs//arcgispro-py3/python.exe',required = T) #set python
Sys.setenv(PATH = paste("C://ArcGIS//Pro/bin", Sys.getenv("PATH"), sep = ";")) #manually ensure variables are loaded correctly
library(reticulate)
sa=reticulate::import("arcpy.sa") #try to load spatial analyst

if that is the case, then no, the issue persists after rearranging my order of operations.

from reticulate.

t-kalinowski avatar t-kalinowski commented on July 24, 2024

I'm sugesting something different actually:

# make sure you're in a fresh R session.
# in RStudio IDE: rstudioapi::restartSession(clean = TRUE)

library(reticulate)

# set env vars before initializing Python
Sys.setenv(PATH = sprintf("%s;%s", normalizePath("C:/ArcGIS/Pro/bin"), Sys.getenv("PATH"))

# initialize Python
use_python('C:/ArcGIS/Pro/bin/Python/envs/arcgispro-py3/python.exe')

# Confirm the correct Python was initialized
py_config() 

# import desired module
sa <- reticulate::import("arcpy.sa")

from reticulate.

andrew-caudillo avatar andrew-caudillo commented on July 24, 2024

@t-kalinowski thank you for the clarification.

The order of operations that you have written worked for me-- there was no error. I did not know about the order of operations for reticulate.

I appreciate your quick response on this matter!

from reticulate.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.