Python
This page is intended for users to install Python and an add environment to which VANTAGE6 can be installed.
Python can be installed in various ways. it is recommended to use environments. Python 3.3+ comes venv, but you can also use other tools like miniconda. In case you use miniconda, you do not need to install python separately as it comes with it. We only explain the case where you use Python venv or in case you use miniconda but other environment managers should also work.
Setup using venv
Install Python 3.3+ from their website. Once installed, create a virtual environment:
python3 -m venv /path/to/new/virtual/environmentc:\>c:\Python35\python -m venv c:\path\to\myenvTo activate an environment:
source <venv>/bin/activateC:\> <venv>\Scripts\activate.batSetup using miniconda
Install miniconda from their website. Once installed, create a virtual environment:
conda create -n environment python=3.7To activate an environment:
conda activate environmentactivate environmentLast updated
Was this helpful?