在Anaconda Prompt中通过conda install 或者 pip install安装的包,安装路径为:
D:\softwares\Anaconda3\Lib\site-packages
前面替换为Anaconda对应的安装路径
如果通过conda create创建了虚拟环境,在虚拟环境中安装的包,在pycharm中无法使用。
如果想在pycharm中运行代码,只能在原环境中重新安装所需的包。
如果没有通过Anaconda安装python,那么pip install的安装路径为:
\xxx\python3.6\site-packages
对应python的安装路径