| Installing Bioperl 1.2 on Windows 2000 and ActivePerl 5.6.1.633 Author Nigam Shah Installing ActivePerl I used ActivePerl-5.6.1.633-MSWin32-x86.msi; I recommend installing perl as C:\Perl and *not* as C:\program files\Active State\Perl External packages PPM3 Installation of Bioperl: Start PPM by typing 'ppm3' at the command prompt after entering the C:\Perl directory (You can also start it from program files->Active State->PPM). This gets you the 'PPM> ' prompt. You can now issue the following commands:
rep add Bioperl http://bioperl.org/DIST/ search bioperl If you see: Writing C:\Perl\\site\lib\auto\bioperl\.packlist Caution:
describe [package number in search] (if you see something like this:)
and the stuff in red is listed for the package you are trying to install, then you are fine. If there are no prerequisites listed then follow the next section and its steps to install bioperl correctly. Do Not install the bioperl package directly. |
|||
| Dependencies for Bioperl 1.2 A full list is provided in the INSTALL file. Perl modules The remaining dependencies are perl modules. Most of the remaining prerequisites can be installed using PPM, the Perl Package Manager. (Basically, PPM is CPAN.pm for Windows.) The following supposes your Windows 2000 is connected to the Net. Start PPM by typing 'ppm3' at the command prompt after entering the C:\Perl directory (You can also start it from program files->Active State->PPM). This gets you the 'PPM> ' prompt. You can now issue the following commands: install File-Temp install IO-String install IO-stringy install DBD-mysql (dependent on DBI, PPM will install it for you) install XML-Writer install libxml-perl install XML::Node install XML::Twig install GD install Graph [for Graph::Directed] (dependent on Heap, PPM will install it for you) Text::Shellwords This module is not essential if you are going to install bioperl using PPM, its required only for running the tests if you dont find some of the above modules on ppm, add the following repository: and then repeat the search, install for the modules that you did not find then add the repositories for bioperl (if you havent done that already) rep add Bioperl http://bioperl.org/DIST/ This time you dont have to worry about the archive listing the dependencies, because we have installed them manually beforehand. If you want to run the tests and do the install yourself in the old way...read on. Other wise you are all set!....enjoy bioperl!! |
|||
|
Tools You can find the latest release at http://bioperl.org/Core/Latest/index.shtml. Download either the tar.gz file or the .zip file, and expand to a temporary directory. At a command prompt, change directories to the location where you expanded the archive, and issue the following commands: perl Makefile.pl (just Makefile.pl will also work)
Nmake This will generate lots of output, mostly just of the form 't\AAChange..........ok'. Nmake install This will copy the modules to your perl\site\lib\ hierarchy, so they are available for inclusion in your scripts. |
|||