Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- windows
- colab
- shakeratos
- ppc64le
- CUDA
- TensorFlow
- download
- Windows 10
- error
- Jupyter notebook
- python
- YouTube 8M
- dlib
- Deep Learning
- install
- colaboratory
- keras
- gpu memory
- FIle
- raspberry pi
- python3
- 딥러닝
- linux
- object detection
- pyTorch
- Anaconda
- dataset
- urllib
- ubuntu
- face_recognition
Archives
- Today
- Total
Shakerato
Can't load some libraries using Anaconda in jupyter notebook 본문
[In windows 10]
1. Open cmd
2. "jupyter kernelspec list"
Available kernels: pytorch C:\Users\[Username]\AppData\Roaming\jupyter\kernels\pytorch tensorflow1.8 C:\Users\[Username]\AppData\Roaming\jupyter\kernels\tensorflow1.8 python3 C:\ProgramData\Anaconda3\share\jupyter\kernels\python3 C:\WINDOWS\system32> |
3. Open "kernal.json"
{ "argv": [ "C:\\ProgramData\\Anaconda3\\python.exe", "-m", "ipykernel_launcher", "-f", "{connection_file}" ], "display_name": "Tensorflow 1.8", "language": "python" } |
4. Change Python.exe path (in my case Anaconda3\\envs\\tensorflow1.8\\python.exe)
{ "argv": [ "C:\\ProgramData\\Anaconda3\\envs\\tensorflow1.8\\python.exe ", "-m", "ipykernel_launcher", "-f", "{connection_file}" ], "display_name": "Tensorflow 1.8", "language": "python" } |
(no module named "scikit-image.io")
conda install -c conda-forge scikit-image
Comments