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 |
Tags
- python
- ubuntu
- YouTube 8M
- error
- Anaconda
- dataset
- keras
- colab
- object detection
- gpu memory
- colaboratory
- linux
- dlib
- raspberry pi
- windows
- TensorFlow
- python3
- install
- FIle
- urllib
- Deep Learning
- CUDA
- pyTorch
- download
- shakeratos
- ppc64le
- Windows 10
- face_recognition
- 딥러닝
- Jupyter notebook
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