Support #877
Updated by Daniel Curtis about 8 years ago
{{>toc}}
This is a guide for setting up FlowCytometryTools on Arch Linux.
h2. Prepare the Environment
* Make sure the system is up to date:
<pre>
pacman -Syyuu
</pre>
* Install a few dependencies:
<pre>
pacman -S git freetype2 pkgconf png
</pre>
*NOTE*: To use the FlowCytometryTools GUI, wxPython must be installed as well:
<pre>
pacman -S wxpython2.8
</pre>
* Setup a Python development envirnoment, refer to issue #876
h2. Install FlowCytometry with Pip
* Switch to the pydev user:
<pre>
su - pydev
</pre>
* Create the FlowCytometryTools virtualenv:
<pre>
virtualenv2 FCT
</pre>
* Activate the virtualenv:
<pre>
source ./FCT/bin/activate
</pre>
* Install FlowCytometryTools:
<pre>
pip --no-cache-dir install flowcytometrytools
</pre>
h2. Install FlowCytometryTools from GitHub
* Switch to the pydev user:
<pre>
su - pydev
</pre>
* Create the FlowCytometryTools virtualenv:
<pre>
virtualenv FCT
</pre>
* Activate the virtualenv:
<pre>
source ./FCT/bin/activate
</pre>
* Clone the FlowCytometryTools from GitHub:
<pre>
git clone https://github.com/eyurtsev/FlowCytometryTools.git
cd FlowCytometryTools
</pre>
* Run the install script:
<pre>
python setup.py install
</pre>
h2. Resources
* https://github.com/eyurtsev/FlowCytometryTools
* https://pypi.python.org/pypi/FlowCytometryTools
* http://eyurtsev.github.io/FlowCytometryTools/install.html
* http://eyurtsev.github.io/FlowCytometryTools/tutorial.html