Open fwhelan opened 3 months ago
Hi @fwhelan!
Sorry for the late response.
One of PaReBrick dependencies (bg) works only with python <= 3.8. I don't see a quick fix to support a newer version and can only suggest using it with a separate conda python 3.8 environment.
You can try:
First, you'll need to create a new Conda environment with Python 3.8.
conda create -n parebrick_env python=3.8
This command creates a new environment named parebrick_env with Python 3.8 installed.
Activate the newly created environment.
conda activate parebrick_env
Now that your environment is active, install the PaReBrick package using conda or pip.
pip install PaReBrick
or
conda install -c conda-forge -c bioconda PaReBrick
When you're done working, you can deactivate the environment by running:
conda deactivate
Hi oxygen311,
I've installed parebricks with
conda install -c conda-forge -c bioconda PaReBrick
. When I try to run the provided example code, I get the following error; any thoughts (e.g. is there a required version ofbg
)?