Installation¶
TIMSCONVERT GUI¶
The GUI version of TIMSCONVERT can be run by downloading it from
the Github releases page for this repo. Unzip the file and run
TIMSCONVERT.exe
. See the Local Usage page for basic usage of TIMSCONVERT.
Manual Installation¶
If you prefer to run TIMSCONVERT locally via the command line interface, you can set up a conda
environment to do
so. Please note that TIMSCONVERT should be run under Windows or Linux. macOS is not supported.
Manual Installation on Windows¶
Download and install Anaconda for Windows if not already installed. Anaconda3-2024.06-1 for Windows is used as an example here. Follow the prompts to complete installation.
Download and install Git for Windows if not already installed.
Run
Anaconda Prompt
.Create a conda instance.
conda create -n timsconvert python=3.11
Activate conda environment.
conda activate timsconvert
Install TIMSCONVERT.
pip install git+https://github.com/gtluu/timsconvert
TIMSCONVERT is now ready to use. See the Local Usage page for basic usage of TIMSCONVERT.
Manual Installation on Linux¶
Please note that while these instructions should apply to most Linux distros, TIMSCONVERT is tested on Ubuntu 22.04.3 LTS. We recommend using this distro if you encounter compatibility issues in others.
If not already installed, download and install Anaconda for Linux. Anaconda3-2024.06-1 for Linux is used as an example here.
Alternatively, the script can be downloaded in the
Terminal
using the following command.
wget https://repo.anaconda.com/archive/Anaconda3-2024.06-1-Linux-x86_64.sh
If not already installed, install
git
. On Ubuntu 22.04.3 LTS, this can be done using the following command.sudo apt-get install git
Install Anaconda for Linux via the bash script that was downloaded. After installation, restart the terminal (or open a new terminal window).
bash [path to]/Anaconda3-2023.07-2-Linux-x86_64.sh
In the terminal, create a conda virtual environment.
conda create -n timsconvert python=3.11
Activate conda environment.
conda activate timsconvert
Install TIMSCONVERT.
pip install git+https://github.com/gtluu/timsconvert
TIMSCONVERT is now ready to use. See the Local Usage page for basic usage of TIMSCONVERT.