安装了Anaconda,如何才能导入其自带的包或模块?
安装了Anaconda,但是不知道导入Anaconda自带的包前需要怎么操作。曾经尝试过把相应的包复制到python所在位置对应的site-package,但这不是长久之计,所以来求助了。
import numpy as np
Traceback (most recent call last):
File "C:\Users\Administrator\Desktop\新建文本文档.py", line 1, in <module>
import numpy as np
ModuleNotFoundError: No module named 'numpy'
你是使用 PyCharm 吗? 那只需要去配置下项目解释器位置就好了,就是在你 Anaconda3 的安装路径下
比如我的 Anaconda3 安装在 X:\Anaconda3 ,所以我的解释器的绝对路径就是: X:\Anaconda3\python.exe
你去 PyCharm 里面的 Setting --> Project --> Add... 下即可:
添加完解释器,点击 Apply ,然后等 PyCharm 加载下模块即可
Twilight6 发表于 2020-7-16 03:28
你是使用 PyCharm 吗? 那只需要去配置下项目解释器位置就好了,就是在你 Anaconda3 的安装路径下
...
以前没用过pycharm,现在正在下载,有点慢。
刚才用vscode把解释器路径调到C:\ProgramData\Anaconda3\Python.exe报了以下错误
Exception has occurred: ImportError
IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!
Importing the numpy c-extensions failed.
- Try uninstalling and reinstalling numpy.
- If you have already done that, then:
1. Check that you expected to use Python3.7 from "C:\ProgramData\Anaconda3\python.exe",
and that you have no directories in your PATH or PYTHONPATH that can
interfere with the Python and numpy version "1.18.1" you're trying to use.
2. If (1) looks fine, you can open a new issue at
https://github.com/numpy/numpy/issues.Please include details on:
- how you installed Python
- how you installed numpy
- your operating system
- whether or not you have multiple versions of Python installed
- if you built from source, your compiler versions and ideally a build log
- If you're working with a numpy git repository, try `git clean -xdf`
(removes all files not under version control) and rebuild numpy.
Note: this error has many possible causes, so please don't comment on
an existing issue about this - open a new one instead.
Original error was: DLL load failed: 找不到指定的模块。
File "C:\Users\Administrator\Desktop\新建文本文档.py", line 1, in <module>
import numpy as np
看到一些文件的名字是Python37 应该是3.7版本,numpy在路径C:\ProgramData\Anaconda3\Lib\site-packages里也有 CHNwldcmzy 发表于 2020-7-16 11:02
以前没用过pycharm,现在正在下载,有点慢。
刚才用vscode把解释器路径调到C:\ProgramData\Anaconda3\Py ...
Anaconda3 配合 PyCharm 比较好,毕竟 Anaconda3 官方推荐配合 PyCharm 共同食用的
【萌新使用 PyCharm 必看】PyCharm 基础使用手册
https://fishc.com.cn/thread-173240-1-1.html
(出处: 鱼C论坛)
Twilight6 发表于 2020-7-16 11:04
Anaconda3 配合 PyCharm 比较好,毕竟 Anaconda3 官方推荐配合 PyCharm 共同食用的
【萌新使用 Py ...
好,等下载好了我先自己试着弄一下 Twilight6 发表于 2020-7-16 11:04
Anaconda3 配合 PyCharm 比较好,毕竟 Anaconda3 官方推荐配合 PyCharm 共同食用的
【萌新使用 Py ...
使用pycharm必须要先把库导入到项目吗,可不可以直接用路径 Anaconda3路径里site-package里的? CHNwldcmzy 发表于 2020-7-16 12:01
使用pycharm必须要先把库导入到项目吗,可不可以直接用路径 Anaconda3路径里site-package里的?
解释器配置到 Anaconda3 的那个就行,模块会自己加载的 。 Twilight6 发表于 2020-7-16 12:07
解释器配置到 Anaconda3 的那个就行,模块会自己加载的
我现在是需要什么库需要按加号去导入https://xxx.ilovefishc.com/forum/202007/16/121353s2akyf7k7kk7gqy4.png.thumb.jpg CHNwldcmzy 发表于 2020-7-16 12:15
我现在是需要什么库需要按加号去导入
配置解释器呀,你配置的都不是 Anaconda3 自带的解释器
按照 2L 操作来
Twilight6 发表于 2020-7-16 12:41
配置解释器呀,你配置的都不是 Anaconda3 自带的解释器
按照 2L 操作来
emmm 会了,谢谢啦
页:
[1]