在命令行下载了模块 而在jupyter中无法导入的问题

借鉴了https://blog.csdn.net/qq_34650787/article/details/83304080?utm_medium=distribute.pc_relevant.none-task-blog-baidujs-1

分别在jupyter和命令行中的python输入

import sys
sys.executable

在命令行下载了模块 而在jupyter中无法导入的问题_第1张图片
在命令行下载了模块 而在jupyter中无法导入的问题_第2张图片
两者路径不一
我采用将jupyter的路径改成与命令行中相同
在 F:\soft\Anaconda\share\jupyter\kernels\python3中的kernel.json
在命令行下载了模块 而在jupyter中无法导入的问题_第3张图片
用记事本打开kernel.json,将第三行的路径改为与之前命令行输出的路径一致
在命令行下载了模块 而在jupyter中无法导入的问题_第4张图片
之后在jupyter中就可以导入在命令行中pip install下载的模块啦

方法二:
或者可以将环境变量中的系统变量中的path路径 把F:\soft\Anaconda\Scripts\ 和 F:\soft\Anaconda\放在F:\soft\Python\Scripts\和F:\soft\Python\ 之前
这样用的就是Anaconda里的包

你可能感兴趣的:(在命令行下载了模块 而在jupyter中无法导入的问题)