如何“conda 安装 ipython”?

如何“conda 安装 ipython”?

conda系统:Ubuntu 14.04,python 2.7.6,pip 1.5.4 来自 /usr/lib/python2.7/dist-packages (python 2.7)。我正尝试根据此表设置我的软件包这里在我的系统中。我成功地做到了

sudo -H pip install auxlib
sudo -H pip install conda

我成功了conda create -n my_root --clone=/usr。我跑了source activate my_root,但我得到了

bash: activate: No such file or directory

我仍然在奔跑conda install ipython,但最终我

Error: Missing write permissions in: /usr
#
# You don't appear to have the necessary permissions to install packages
# into the install area '/usr'.
# However you can clone this environment into your home directory and
# then make changes to it.
# This may be done using the command:
#
# $ conda create -n my_root --clone=/usr

你怎么能跑conda install ipython呢?

答案1

您至少需要conda install ipython以 root (sudo) 身份运行。

这同样适用于其他命令。

相关内容