macos 系统设置anaconda虚拟环境,并在pycharm中使用

1…首先下载并安装anaconda3和pycharm
2…增加环境变 在 在~/.zshrc 中添加 一行 export=“/Users/username/anaconda3/bin:$PATH”,并且source .zshrc
3…创建虚拟环境 conda create -n my_python python=3.X
4…激活并进入环境 conda activate my_python,推出环境 conda deactivate my_python
5…conda install xxx 进入环境后安装包
6…删除环境 conda remove -n my_python --all
7. conda updata xxx。 更新包
8. conda uninstall xxx 删除包
9. pycharm中配置conda环境
Setting —> Preferences —> Python Interpreter —>Show All —> + 号 —>
然后输入如下命令查看路径
conda activate my_python
where python
10.找到创建的虚拟环境 “my_python ,在该路径的文件夹下面的 bin 文件夹中,找到 python3.8确定即可

你可能感兴趣的:(pycharm,macos,python)