我正在解决sublimetext和一些python文件上的任何问题。在终端上,我停用了虚拟环境并尝试了以下操作:
conda install -c chroxvi memory_profiler.
但是随后开始出现
Traceback (most recent call last):
File "/home/wxxx/anaconda3/bin/conda", line 7, in <module>
from conda.cli import main
ModuleNotFoundError: No module named 'conda'
在我的.bashrc文件中,我有这个
# added by Anaconda3 5.3.1 installer
# >>> conda init >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$(CONDA_REPORT_ERRORS=false
'/home/wxxx/anaconda3/bin/conda' shell.bash hook 2>
/dev/null)"
if [ $? -eq 0 ]; then
\eval "$__conda_setup"
else
if [ -f
"/home/wxxx/anaconda3/etc/profile.d/conda.sh" ];
then
. "/home/wxxx/anaconda3/etc/profile.d/conda.sh"
CONDA_CHANGEPS1=false conda activate base
else
\export PATH="/home/wxxx/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda init <<<
我已经搜索了一些有关如何解决该问题的信息,但是直到现在,看来唯一的方法就是重新安装anaconda。所以我的问题是如何正确执行此操作,因为我已经使用conda命令安装了pandas,django,opencv和其他内容。我最后尝试的也是来自该网站http://www.programmersought.com/article/66221340029/;jsessionid=F168F13734CAE35205ABD356098E5BF6。但是没有成功
cd /usr/bin
rm python
rm python3
sudo ln -s /user/bin/python3.5 /usr/bin/python3
sudo ln -s /home/wxx/anaconda3/bin/python3.6
/home/wxx/anaconda3/bin/python
我真的希望有人可以给我有关此问题的建议。 谢谢