Open jcchacond opened 1 year ago
Hi Camilo,
Just to let you know, I was installing liftoff using conda and pip just now, but unfortunately both failed as you descried. Then I followed the instruction to install from source, it worked.
Best wishes, Yutang
Dear Camilo and Yutang,
I experienced similar problems where installation through conda failed and installation using pip resulted in an error. Also for me, compiling from source resulted in an error, likely due to the preinstalled python rights (no sudo or writing rights to certain drives).
Hence, I used a workaround which might help you. 1) create conda environment with python 3.10
conda create -n liftoff python=3.10
conda activate liftoff
2) check whether the newly installed python is used and located somewhere you have rights to write
which python
/home/conda/envs/liftoff/bin/python
3) run installation
python setup.py install
4) check if you can invoke liftoff
which liftoff
/home/conda/envs/liftoff/bin/liftoff
liftoff -h
brought up help page
Please note that I haven't yet tried whether it actually works with the test data.
Cheers, Willem
Dear Alaina,
I've been trying to set up the latest version of liftoff in a MacBook (M1) and a linux-based HPC following all your instructions. Both conda and pip liftoff installation fail.
conda installation
conda install -c bioconda liftoff
conda v23.1.0 in both caseson the cluster
on Mac
I have also tried creating a conda environment exclusively for this as suggested in other issues, and it doesn't solve the problem.
pip installation
pip install Liftoff
both on the cluster and MacBook (pip v22.3.1 in cluster and pip 23.0.1 in Mac)
I'd appreciate any help with solving this. I'm happy to provide more information.
Thank you in advance, Camilo