python:用conda安装dash

时间:2018-04-02 15:17:20

标签: python install conda plotly-dash

我真的很擅长在python中导入包。我的计算机上有python 3.6.4,我正在尝试安装dash package,dash_core_components。

我尝试输入anaconda提示符:conda install dash,(不适用于当前频道) 我也尝试安装pip throw conda:Conda install pip 然后 pip install dash ...但是也遇到了错误。

我真的很新,说实话,我真的不知道我在做什么。当我打开它时说我从spyder弹出一个弹出窗口说不要使用pip,它可以破坏东西。我不明白为什么会这样......

我怎样才能得到冲刺?一步一步

非常感谢

4 个答案:

答案 0 :(得分:16)

以下是让conda安装破折号的命令:

conda install -c conda-forge dash-renderer
conda install -c conda-forge dash 
conda install -c conda-forge dash-html-components 
conda install -c conda-forge dash-core-components
conda install -c conda-forge plotly

如果你转到HBase ImportTsv并搜索包,他们会给你conda命令来安装包。

答案 1 :(得分:1)

与其他人一起。您还可以尝试以下操作:

import pip

pip.main(['install', 'dash-renderer', '--user'])
pip.main(['install', 'dash', '--user'])
pip.main(['install', 'dash-html-components', '--user'])
pip.main(['install', 'dash-core-components', '--user'])
pip.main(['install', 'plotly', '--user'])

注意:这将仅为当前会话安装软件包。

也尝试以下操作:

!pip install dash-renderer
!pip install dash
!pip install dash-html-components
!pip install dash-core-components
!pip install plotly

答案 2 :(得分:0)

根据Dash网站上的最新更新,以下内容应该立即即可:

pip install dash==1.8.0

注意:从破折号0.37.0开始,破折号会自动安装 dash-renderer,dash-core-components,dash-html-components和 破折号表,使用每个文件的已知兼容版本。你不需要 不应再单独安装这些组件,只能自行安装。

根据上述卢卡斯的评论,使用Anaconda发行版:

conda install -c conda-forge dash

答案 3 :(得分:-2)

请尝试以下方法之一:

conda install -c conda-forge dash
conda install -c conda-forge/label/broken dash

它适用于我的另一个包(opencv)。来源link from anaconda.org