我正在尝试安装托管在GitHub上的R软件包,但是我尝试的每个软件包都出现错误。我什至创建了一个演示/测试,但仍然无法下载/安装。不管是SSH还是PAT。
public class GoToAdminPage extends BasicTest {
Login Login = new Login();
/**
* @throws java.lang.Exception
*/
@Before
public void setUp() throws Exception {
super.setUp();
Login.login(driver);
}
/**
* @throws java.lang.Exception
*/
@After
public void tearDown() throws Exception {
super.tearDown();
}
@Test
public void test() throws Exception {
...post login test process...
}
}
>devtools::install_github("rich-iannone/blastula")
我已经卸下并重新安装了Error: Failed to install 'unknown package' from GitHub: attempt to set an attribute on NULL
,并且还尝试与devtools
软件包一起使用。仍然没有运气。
这是什么意思?我该如何解决?
remotes
devtools 2.2.1 2019-09-24 [1] CRAN (R 3.6.1)