일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- LaTeX
- virtual
- Anaconda
- polyglot
- c++
- HFS+
- HDF5
- h5py
- Windows
- MAC
- conda
- mpi4py
- intel compiler
- gfortran
- tab space
- datascience
- Visual Studio
- python
- Matplotlib
- openmp
- SSH
- vi
- arXiver
- jupyter
- cython
- GSL
- vim
- cygwin
- portforwarding
- hyperref
- Today
- Total
목록jupyter (3)
Astro Coke
Jupyter lab 이나 Jupyter notebook 을 외부에서 접속해서 사용할 때, 백그라운드로 활성화시켜서 종료할 때 확인을 잘 못하는 경우가 있다. 이럴 땐, 계속해서 돌아가는 일들이 종종 있는데, > jupyter lab list 위 명령어로 현재 살아 있는 노트북을 확인 할 수 있다 (경우에 따라 lab 과 notebook을 바꿔서 쓸 수 있다). 이를 통해 확인한 port 넘버로 (e.g., 8888) 아래와 같이 중단할 수 있다. jupyter lab stop 이때 간혹, ConnectionRefusedError: [Errno 10061] Unknown error 와 같은 에러가 발생하기도 하는데, 이 경우에는, jupyter --paths 를 통해 runtime 임시 파일 폴더의 위치..
source: https://janakiev.com/blog/jupyter-virtual-envs/#:~:text=A%20virtual%20environment%20is%20an,or%20packages%20for%20different%20projects. Create Virtual Environment with Anaconda Let’s have a look how to create an virtual environment with Anaconda. Anaconda is a Python (and R) distribution that has the goal to simplify package management and deployment for scientific computing. After the i..
source: https://www.digitalocean.com/community/tutorials/how-to-set-up-a-jupyter-notebook-to-run-ipython-on-ubuntu-16-04 서버에 접속을 해서 jupyter (or ipython) 를이용할 때, 기본적으로는 서버에 있는 브라우저를 통해 작업을 하도록 설정이 되어 있어 속도가 현저히 느려진다. 이를 해결하기 위해, portforwadring 을 통하여 현재(리모트) 컴퓨터의 브라우저를 대신 이용하는 방법이 있다. 1) portforwarding > ssh -L 8080:localhost:8080 astrodoo@xxx.xxx.xxx.xxx ssh 를 통해 portforwarding을 하는 방법. (-L) 앞의 80..