我以Python 2.7为根。我需要安装包" statistics"在Python 3.6中,它不在anaconda导航器的环境中。如何安装"统计"使用conda
或pip
进行辅助Python环境?
答案 0 :(得分:8)
运行以下命令创建一个新的Python 3环境:
conda create --name python3 python=3
如果您希望默认安装所有标准的anaconda软件包,请执行以下操作:
conda create --name python3 python=3 anaconda
每当您需要使用python3
run:
activate python3
然后正常使用命令行。因此,如果您想在python3
环境中安装某些内容,请务必先activate python3
。
请注意您可能觉得有用的python 3 has it's own statistics module,如果您愿意,可以使用此模块has been ported to python 2。