Difference between revisions of "Mac OSX(Leopard)"

From WormBaseWiki
Jump to navigationJump to search
 
(10 intermediate revisions by one other user not shown)
Line 1: Line 1:
== Required Software ==
+
If you do not want to use the webstart version (i.e. the 1.5 stable version) follow the directions for installing and running from the command line.
  
*[http://subversion.tigris.org/project_packages.html Subversion]
+
== Required Software for running from command line ==
*Apache Ant
 
  
Phenote is stored in a [http://subversion.tigris.org/ ''Subversion (SVN)''] system ([http://en.wikipedia.org/wiki/Subversion_%28software%29  an alternative] to the CVS version control system we've been using to maintain the latest Phenotype Ontology).  
+
*[http://subversion.tigris.org/project_packages.html Subversion] v.1.4.6
 +
*[http://ant.apache.org/ Apache Ant] v.1.7.0
 +
*[http://www.phenote.org/ Phenote+] v.1.5+
  
Download Subversion from the [http://subversion.tigris.org/project_packages.html SVN project package page].
+
<br>
Download Apache ant
 
  
Download phenote+ (called '''phenote2''') from the command line.
+
Phenote is stored in a [http://subversion.tigris.org/ ''Subversion (SVN)''] system ([http://en.wikipedia.org/wiki/Subversion_%28software%29 an alternative] to the CVS version control system we've been using to maintain the latest Phenotype Ontology). And can be downloaded from the [http://subversion.tigris.org/project_packages.html SVN project package page].  
<code>$ svn co https://obo.svn.sourceforge.net/svnroot/obo/phenote/trunk </code>
 
  
To launch Phenote+ from the command line:  
+
Apache Ant is a [http://en.wikipedia.org/wiki/Apache_Ant Java based software building tool] and can be downloaded from the the [http://ant.apache.org/bindownload.cgi Apache Binary Distributions page].  
<code>pwd to phenote2
 
$ svn update
 
$ ant build-all
 
$ ./phenote2 -c worm.cfg</code>
 
  
 +
<br> Download phenote+ source code (called '''phenote2''') from the command line. These instructions are found on the bottom of the [http://www.phenote.org/developer-docs/getting-source-code-in-eclipse.shtml Getting and Running the Source Code&nbsp;]page of the Phenote site.
  
[http://www.wormbase.org/wiki/index.php/Installing_Phenote ''back'']
+
$ svn co https://obo.svn.sourceforge.net/svnroot/obo/phenote/trunk phenote
  
--[[User:Kyook|kjy]] 15:55, 12 March 2008 (EDT)
+
To update the Phenote+ source code, which you will need to do every so often:
 +
 
 +
cd to phenote
 +
$ svn up
 +
$ ant build-all
 +
$ ./phenote2 -c worm.cfg
 +
 
 +
<br> To launch Phenote+ without updating the source code:
 +
 
 +
cd to phenote2
 +
$ ./phenote2 -c worm.cfg
 +
 
 +
the worm configuration of phenote will be opened every time afterwards until a new config is picked, so afterwards, only need to do:
 +
 
 +
$./phenote2
 +
 
 +
[http://www.wormbase.org/wiki/index.php/Installing_Phenote ''back'']
 +
 
 +
--[[User:Kyook|kjy]]
 +
 
 +
 
 +
[[Category:Curation]]
 +
[[Category:Developer documentation]]

Latest revision as of 17:34, 16 August 2010

If you do not want to use the webstart version (i.e. the 1.5 stable version) follow the directions for installing and running from the command line.

Required Software for running from command line


Phenote is stored in a Subversion (SVN) system (an alternative to the CVS version control system we've been using to maintain the latest Phenotype Ontology). And can be downloaded from the SVN project package page.

Apache Ant is a Java based software building tool and can be downloaded from the the Apache Binary Distributions page.


Download phenote+ source code (called phenote2) from the command line. These instructions are found on the bottom of the Getting and Running the Source Code page of the Phenote site.

$ svn co https://obo.svn.sourceforge.net/svnroot/obo/phenote/trunk phenote

To update the Phenote+ source code, which you will need to do every so often:

cd to phenote

$ svn up $ ant build-all $ ./phenote2 -c worm.cfg


To launch Phenote+ without updating the source code:

cd to phenote2

$ ./phenote2 -c worm.cfg

the worm configuration of phenote will be opened every time afterwards until a new config is picked, so afterwards, only need to do:

$./phenote2

back

--kjy