How do I install a package for different Python versions in Anaconda?

前端 未结 1 1092
栀梦
栀梦 2020-12-31 23:18

I have Python 2.7 as root. I need to install the package \"statistics\" in Python 3.6, and it is not in the environments of anaconda navigator. How can install \"statistics\

1条回答
  •  無奈伤痛
    2020-12-31 23:46

    Create a new Python 3 environment by running:

    conda create --name python3 python=3
    

    If you want all the standard anaconda packages installed by default, do:

    conda create --name python3 python=3 anaconda
    

    Whenever you need to use python3 run:

    activate python3
    

    Then use the command line as normal. So, if you want to install something into your python3 environment, make sure you activate python3 first.

    Note that python 3 has it's own statistics module that you may find useful, and this module has been ported to python 2 if you would prefer.

    0 讨论(0)
提交回复
热议问题