⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 install.texi

📁 贝叶斯学习算法分类文本。基于朴素贝叶斯分类器的文本分类的通用算法
💻 TEXI
字号:
@c set the vars LIBBOW_VERSION@include version.texi@ifset INSTALL_ONLYThis file documents the installation of the Bag Of Words Library,@samp{libbow}.  Copyright (C) 1996, 1997 Andrew McCallum.  Youmay copy, distribute, and modify it freely as long as you preserve thiscopyright notice and permission notice.@chapter Installing @samp{libbow}@end ifsetTo compile and install @samp{libbow}:@enumerate@itemConfigure the source for your system by typing@example./configure --prefix=/usr/local@end exampleWhere @samp{/usr/local} can be replaced with any pre-existing directoryin which you want to install the package.  Executables will go in@samp{prefix}/bin.  The library, @code{libbow} will go in@samp{prefix}/lib.  The include files will go in@samp{prefix}/include/bow.If you want to turn off all debugging assertions, you can do this bysetting CPPFLAGS in the configuration line.@exampleCPPFLAGS=-DNDEBUG ./configure --prefix=/usr/local@end exampleMore detailed information about the @samp{configure} options can befound below.@itemMake libbow.  (Note, libbow requires GCC, and the Makefile requires GNUmake.)@examplemake@end exampleYou can now try running the sample programs, (e.g. @samp{rainbow}).  Seethe README file for some examples.@itemInstall libbow@examplemake install@end example@end enumerateHere are general instructions for @file{configure}, that explain@file{configure}'s options.@enumerate@itemConfigure the package for your system.  In the directory that this fileis in, type @samp{./configure}.  If you're using @samp{csh} on an oldversion of System V, you might need to type @samp{sh configure} insteadto prevent @samp{csh} from trying to execute @samp{configure} itself.The @samp{configure} shell script attempts to guess correct values forvarious system-dependent variables used during compilation, and createsthe Makefile(s) (one in each subdirectory of the source directory).  Insome packages it creates a C header file containing system-dependentdefinitions.  It also creates a file @samp{config.status} that you canrun in the future to recreate the current configuration.Running @samp{configure} takes less than a minute or two.  While it isrunning, it prints some messages that tell what it is doing.  If youdon't want to see the messages, run @samp{configure} with its standardoutput redirected to @samp{/dev/null}; for example:@smallexample ./configure >/dev/null@end smallexampleTo compile the package in a different directory from the one containingthe source code, you must use a version of make that supports the VPATHvariable, such as GNU make.  @samp{cd} to the directory where you wantthe object files and executables to go and run @samp{configure}.@samp{configure} automatically checks for the source code in thedirectory that @samp{configure} is in and in @samp{..}.  If for somereason @samp{configure} is not in the source code directory that you areconfiguring, then it will report that it can't find the source code.  Inthat case, run @samp{configure} with the option @samp{--srcdir=DIR},where DIR is the directory that contains the source code.By default, @samp{make install} will install the package's files in/usr/local/bin, /usr/local/lib, /usr/local/man, etc.  You can specifyan installation prefix other than /usr/local by giving @samp{configure} theoption @samp{--prefix=PATH}.  Alternately, you can do so by giving a valuefor the @samp{prefix} variable when you run @samp{make}, e.g.,@smallexamplemake prefix=/usr/gnu@end smallexampleYou can specify separate installation prefixes for architecture-specificfiles and architecture-independent files.  If you give @samp{configure}the option @samp{--exec_prefix=PATH} or set the @samp{make} variable@samp{exec_prefix} to PATH, the package will use PATH as the prefix forinstalling programs and libraries.  Data files and documentation willstill use the regular prefix.  Normally, all files are installed usingthe regular prefix.You can tell @samp{configure} to figure out the configuration for yoursystem, and record it in @samp{config.status}, without actuallyconfiguring the package (creating @samp{Makefile}s and perhaps aconfiguration header file).  To do this, give @samp{configure} the@samp{--no-create} option.  Later, you can run @samp{./config.status} toactually configure the package.  This option is useful mainly in@samp{Makefile} rules for updating @samp{config.status} and@samp{Makefile}.  You can also give @samp{config.status} the@samp{--recheck} option, which makes it re-run @samp{configure} with thesame arguments you used before.  This is useful if you change@samp{configure}.@samp{configure} ignores any other arguments that you give it.If your system requires unusual options for compilation or linking that@samp{configure} doesn't know about, you can give @samp{configure}initial values for some variables by setting them in the environment.In Bourne-compatible shells, you can do that on the command line likethis:@smallexampleCC='gcc -traditional' DEFS=-D_POSIX_SOURCE ./configure@end smallexampleThe @samp{make} variables that you might want to override with environmentvariables when running @samp{configure} are:(For these variables, any value given in the environment overrides thevalue that @samp{configure} would choose:)@table @samp@item CCC compiler program.  Default is @samp{cc}, or @samp{gcc} if @samp{gcc}is in your PATH. @item INSTALLProgram to use to install files.Default is @samp{install} if you have it, @samp{install.sh} otherwise.@end table(For these variables, any value given in the environment is added tothe value that @samp{configure} chooses:)@table @samp@item DEFSConfiguration options, in the form @samp{-Dfoo -Dbar ...}@item LIBSLibraries to link with, in the form @samp{-lfoo -lbar ...}@end tableIf you need to do unusual things to compile the package, we encourageyou to figure out how @samp{configure} could check whether to do them, andmail diffs or instructions to the address given in the @samp{README} so wecan include them in the next release.@itemType @samp{make} to compile the package.  If you want, you can overridethe @samp{make} variables @samp{CFLAGS} and @samp{LDFLAGS} like this:@smallexample	make CFLAGS=-O2 LDFLAGS=-s@end smallexample@itemType @samp{make install} to install programs, data files, anddocumentation.@itemYou can remove the program binaries and object files from the sourcedirectory by typing @samp{make clean}.  To also remove the Makefile(s),and @samp{config.status} (all the files that @samp{configure} created),type @samp{make maintainer-clean}.The file @samp{configure.in} is used as a template to create@samp{configure} by a program called @samp{autoconf}.  You will onlyneed it if you want to regenerate @samp{configure} using a newer versionof @samp{autoconf}.@end enumerate

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -