Anaconda一些操作的总结
Anaconda一些操作的总结
创建新的环境并指定python版本,其中yourEnv改成想要的名字
conda create --name yourEnv python=3.7把这个安装包放到anaconda存放包的目录下,如:
~/anaconda3/pkgs/ 这个目录下
conda install --use-local boost-1.59.0-py27_0.tar.bz2
conda install yfinance -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/使用默认源安装
查看源
conda config --show-sources添加源
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/删除源
conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/安装已下载的扩展包
pip install 路径+whl文件名.whl
创建新环境
conda create -n py36 python=3.6 删除环境
conda remove -n py36 --allpip安装报错
pip install ga -i http://pypi.mirrors.ustc.edu.cn/simple/ --trusted-host pypi.mirrors.ustc.edu.cn