Setting Up a Virtual Environment
Last updated
Was this helpful?
Installing Mito in a virtual environment reduces dependency issues and ensures that Mito will not impact any of your other Python projects.
Setting up a virtual environment is dependent on your Python installation method/package manager. Below are several of the most common methods.
Create a new environment:
python -m venv mitoenvActivate the environment:
On Windows in command prompt:
mitoenv\Scripts\activate.batOn Mac:
source mitoenv/bin/activateTo install Mito within an Anaconda Navigator virtual environment:
Select Environments in the left navigation
Select the Create button to create a new environment
Give your new environment a descriptive name like Mito
Make sure it is configured to use Python >3.8
Click create
After the environment is created, switch to Home, and select the Mito environment you just created.
Select the "▶" icon next to your new environment. Then select "Open terminal".
In the terminal, install the Mito Jupyter Lab extensions by running the command:
Use Mito
Click on the Home button
Find the Juptyer Lab tile, make sure it is running JupyterLab ≥ 4.1 and press Launch
Then, follow these instructions to create a mitosheet and use AI.
Create a new conda environment:
Activate your new environment:
Last updated
Was this helpful?
Was this helpful?
python -m pip install mitosheet mito-aiconda create -n mitoenv python=3.10conda activate mitoenv