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
The current instructions assume the user has git installed, and knows how to clone a project. Worse still, the instructions don't mention that that is what the user is expected to do, causing confusion.
I recommend adding LegendT2dm to the renv lock file, and instruct users to download the lock file and initialize renv like this
The text was updated successfully, but these errors were encountered:
Not sure if it's helpful for an update here, but just in case this is useful for others. I'm helping install on a new AWS/windows workspace and the only way I can get it to install somewhat cleanly is to run the following in order. nloptr is problematic at the current version where there are no longer binaries. And without updating renv, I get constant installation errors at the restore() step and the build and install step. VM image includes R 4.1.2 by default and I haven't touched that - updating to 4.3.x seems to cause issues for MASS and a few other packages.
install.packages("renv")
renv::activate()
renv::record("[email protected]")
install.packages("nloptr")
renv::restore()
renv::upgrade()
renv::record("[email protected]")
# use GUI to install & build
The current instructions assume the user has
git
installed, and knows how to clone a project. Worse still, the instructions don't mention that that is what the user is expected to do, causing confusion.I recommend adding LegendT2dm to the renv lock file, and instruct users to download the lock file and initialize renv like this
The text was updated successfully, but these errors were encountered: