2ndVirtualEnvironment - igheyas/Bioinformatics GitHub Wiki

  1. In your WSL Ubuntu shell, run:
sudo apt update
sudo apt install python3-venv

  1. Now you can re-make your venv:
cd /mnt/c/Users/IAGhe/OneDrive/Documents/Bioinformatics
python3 -m venv iss_env
source iss_env/bin/activate

  1. With (iss_env) on your prompt, upgrade pip and install InSilicoSeq:
pip install --upgrade pip
pip install insilicoseq

deactivate (ubuntu)

deactivate 2>/dev/null || true

activate your InSilicoSeq venv:

cd /mnt/c/Users/IAGhe/OneDrive/Documents/Bioinformatics    # or wherever your project lives
source iss_env/bin/activate

To remove the venv (WSL)

deactivate
cd /mnt/c/Users/IAGhe/OneDrive/Documents/Bioinformatics
rm -rf iss_env