永远并卡住tensorflow安装:Anaconda navigator
Taking forever and stuck tensorflow installation: Anaconda navigator
我是 Anaconda 的新手。我转到 anaconda 导航器的 'uninstalled' 页面并搜索 tensorflow。我找到它,单击它并按应用按钮安装它。 出现一个弹出窗口,上面写着 'solving packet specifications',它就一直这样。 我不知道该怎么办。
我做了 'conda create -n tf tensorflow' 的事情,但它创建了一个新环境,而不是在基础环境中安装 tensorflow。 如果我从这个新环境打开 Jupyter,显然,我被迫安装每个小库,如 matplotlib 等
所以,我又回到了在'base'环境中进入'uninstalled'页面并尝试从这里安装tensorflow的方法,但是出现了上述问题。 我陷入了这个循环。请任何人提出建议。
'solving packet specifications'
表示它使用 Anaconda 安装 tensorflow
包,这可能需要一点时间。
我们需要创建虚拟环境来安装和使用 TensorFlow,因为它有一组特定的库要安装在支持已安装的 TensorFlow 版本的环境中。
按照以下代码在虚拟环境中安装 TensorFlow:
conda create -n tf tensorflow #Create a Virtual environment(tf).
conda activate tf #Activate the Virtualenv environment
pip install tensorflow #install TensorFlow in it.
注意:每次使用TensorFlow都需要激活虚拟环境。
是的,您需要根据您的程序需要进一步安装其他所需的包。
为此,您可以 select 虚拟环境和 select 要安装的特定 non-installed 包
或者你可以在 jupyter notebook 中使用 !pip install <package-name>
。
我是 Anaconda 的新手。我转到 anaconda 导航器的 'uninstalled' 页面并搜索 tensorflow。我找到它,单击它并按应用按钮安装它。 出现一个弹出窗口,上面写着 'solving packet specifications',它就一直这样。 我不知道该怎么办。
我做了 'conda create -n tf tensorflow' 的事情,但它创建了一个新环境,而不是在基础环境中安装 tensorflow。 如果我从这个新环境打开 Jupyter,显然,我被迫安装每个小库,如 matplotlib 等
所以,我又回到了在'base'环境中进入'uninstalled'页面并尝试从这里安装tensorflow的方法,但是出现了上述问题。 我陷入了这个循环。请任何人提出建议。
'solving packet specifications'
表示它使用 Anaconda 安装 tensorflow
包,这可能需要一点时间。
我们需要创建虚拟环境来安装和使用 TensorFlow,因为它有一组特定的库要安装在支持已安装的 TensorFlow 版本的环境中。
按照以下代码在虚拟环境中安装 TensorFlow:
conda create -n tf tensorflow #Create a Virtual environment(tf).
conda activate tf #Activate the Virtualenv environment
pip install tensorflow #install TensorFlow in it.
注意:每次使用TensorFlow都需要激活虚拟环境。
是的,您需要根据您的程序需要进一步安装其他所需的包。
为此,您可以 select 虚拟环境和 select 要安装的特定 non-installed 包
或者你可以在 jupyter notebook 中使用 !pip install <package-name>
。