-
Notifications
You must be signed in to change notification settings - Fork 7
Installing cvapipe
Matheus Viana edited this page Sep 26, 2022
·
2 revisions
Use the following steps to install cvapipe_analysis:
- Create a new conda environment. If you don't have conda installed, please follow this. Then, on your terminal type:
conda create --name cvapipe python=3.8- Active the new environment:
conda activate cvapipe- Go to the folder where you want
cvapipe_analysisinstalled and type:
git clone https://github.com/AllenCell/cvapipe_analysis.git- Install
cvapipe_analysisand its dependencies:
cd cvapipe_analysis
pip install -e .- Test if
cvapipe_analysisis working:
python -c "from cvapipe_analysis.tools import general; general.check_installation()"You should see this message: :: cvapipe_analysis seems to be properly installed! ::.