您需要以下C/ c++库来从源代码构建flowWorkspace(对于windows用户使用Rtools)。——libxml2 Linux用户=============这些库安装在非标准位置,请将它们的“前缀”传递给配置脚本。例如,R CMD INSTALL flowWorkspace/——configure-args='——with-xml=/home/yourname/xml_dir'同时,通过将这些库添加到LD_LIBRARY_PATH环境变量中,确保这些库可以在运行时被R找到。例如export LD_LIBRARY_PATH=/home/yourname/xml_dir:$LD_LIBRARY_PATH添加到你的`~/。“Profile”文件可以避免下次这样做。Windows用户=============安装libxml2: 1。从http://rglab.github.io/binaries/下载预构建的二进制文件2。解压它(例如到c:\libxml2),你应该在i386和x64文件夹|-include |——libxml2 |-----libxml(所有*.h都在这里)|-lib(我们应该有静态库libxml2。3.答案A。设置环境变量LIB_XML2,以便flowWorkspace找到它的库文件和头文件。您可以这样做:*右键单击“计算机”并选择“属性”*单击“高级系统设置”并选择“高级”选项卡*单击“环境变量”按钮并弹出对话框*单击“新建”按钮并在“变量名称”字段中输入“LIB_XML2”,并在“变量值”字段中输入/path/to/your/libxml2(例如c:/libxml2)。记住使用“/”而不是“\”作为目录分隔符。 You can download Rtools at http://www.murdoch-sutherland.com/Rtools/ which provides the resources for building R and R packages. You should add to the Path variable the paths to the various components of Rtools. Please read the "Windows Toolset" appendix at http://cran.r-project.org/doc/manuals/R-admin.html#The-Windows-toolset for more details.