Python Conda Virtual Environment Quickstart Guide on Gnu/Linux

September 9, 2019 | By the+gnu+linux+evangelist.

Making Virtual Env

  1. 2. Making Conda Virtual Env

    Then to Create Miniconda Virtual Environment
    For an Ordinary one:

    conda create --name mycondaenv

    Confirm with ‘y’.
    And instead to make a Virtual Env with a Specific Python Version:

    conda create -n mycondaenv python=3.7

    Again, to make a Virtual Env with a specific Package for instance:

    conda create -n mycondaenv scipy

    Again, to create a Virtual Env with a specific Version of a Package:

    conda create -n mycondaenv scipy=0.15.0

    Finally, to create a Virtual Env with Multiple Packages:

    conda create -n mycondaenv python=3.7 scipy=0.15.0 astroid babel

QuickChic Theme • Powered by WordPress