Usage¶
Installation¶
To use μGUIDE, first install it using pip:
We recommend to use a conda virtual environment. If conda is installed on your machine, an environment for installing
μGUIDEcan be created as follows:
$ conda create -n uGUIDE_env python=3.8 && conda activate uGUIDE_env
Fork the repository and run the following command to clone it on your local machine:
(uGUIDE_env) $ git clone git@github.com:{YOUR_GITHUB_USERNAME}/uGUIDE.git
cdtoμGUIDEdirectory and install it:
(uGUIDE_env) $ cd uGUIDE
(uGUIDE_env) $ pip install .
This will also install the dependencies of μGUIDE.
To check if the installation worked fine, you can run:
(uGUIDE_env) $ python -c 'import uGUIDE'
and it should not give any error message.