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
Hello, I will like to know if there is a standard way to restore your virtual environment in Github Actions when using also python. I have created a python virtual environment inside my renv folder:
renv
|_ python
|_ virtualenvs
|_ renv-python-3.11
And in my workflow I have:
- name: Setup R
uses: r-lib/actions/setup-r@v2
with:
r-version: renv
- name: Setup R dependencies
uses: r-lib/actions/setup-renv@v2
Which returns Error: error restoring Python packages [error code 1] after restoring r. I am guessing this is because I haven't setup python. Is there a standard way to do this with renv?
The text was updated successfully, but these errors were encountered:
Hello, issue solve it wasn't returning error because couldn't find python installation or anything it was returning error due to a package requirement being to specific.
Hello, I will like to know if there is a standard way to restore your virtual environment in Github Actions when using also python. I have created a python virtual environment inside my renv folder:
And in my workflow I have:
Which returns
Error: error restoring Python packages [error code 1]
after restoring r. I am guessing this is because I haven't setup python. Is there a standard way to do this with renv?The text was updated successfully, but these errors were encountered: