일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- conda
- SSH
- virtual
- hyperref
- cython
- tab space
- Matplotlib
- datascience
- openmp
- gfortran
- GSL
- c++
- jupyter
- cygwin
- MAC
- Anaconda
- vi
- python
- polyglot
- Visual Studio
- mpi4py
- arXiver
- h5py
- portforwarding
- Windows
- HFS+
- LaTeX
- intel compiler
- vim
- HDF5
- Today
- Total
목록Windows (6)
Astro Coke
서브 유저 아이디를 만들고 로그인을 했더니 python 실행이 안되었다. > python Fatal Python error: Py_Initialize: unable to load the file system codec ModuleNotFoundError: No module named 'encodings' Current thread 0x0000037c (most recent call first): 이것은 Environment Variables 에서 PATH 설정에 python (anaconda) 폴더가 포함이 안되어 있어서 발생할 수도 있지만, 또 다른 이유는 python 이 설치되어 있는 장소가 메인 유저의 홈 디렉토리라면 그 디렉토리를 다른 서브 유저들이 접속 권한이 없다면 발생할 수 있다. 해결책은 ..
source: https://www.tactig.com/remote-access-windows-10-with-mac-os-x/ The remote access with windows 10 is much easy and comfortable to do but if a question appears about remote access Windows 10 with Mac OS X then it’s somehow difficult to do that’s why this time we’ve covered this topic and want to show you. The remote access is the best solution for helping each others from different and far..
source1: https://superuser.com/questions/61185/why-do-i-get-files-like-foo-in-my-tarball-on-os-x source2: https://apple.stackexchange.com/questions/14980/why-are-dot-underscore-files-created-and-how-can-i-avoid-them Mac OSX 에서 압축한 것들을 다른 플랫폼에서 압축 해제할 때, ._ 파일들이 생성될 때가 있다. 이 때에는 아래와 같은 방법으로 해결할 수 있다. 1) OS X 설정 OS X's tar also knows how to convert the ._ members back to native formats, but the ._..
시스템에 여러 버전의 HDF5 가 설치되어 있는 경우, python 에서 h5py를 사용할때 맨 아래와 같은 에러가 발생하는 경우가 있다. 이때, HDF5 가 다중 설치되어 있는 것이 anaconda 같은 환경내에서라면 이 라이브러리를 지우고 다시 설치하면 문제가 해결될 것이다. e.g.) > conda uninstall hdf5 > conda install hdf5 > conda install h5py 하지만, 이 문제가 anaconda 환경 밖에 설치된 hdf5와 충돌이 일어나는 것이라면, 문제의 포인트가 다르다. 핵심 요인은 PATH환경변수의 우선순위!!! h5py는 anaconda 내의 hdf5 라이브러리와 연동이 되어야 하기때문에, python 사용시 anaconda의 path 가 다른 hdf5..
visual studio prompt를 이용해 접속한 윈도우에서는 -L 옵션이 ifort에서 인식되지 않는다. 이때에는 다음과 같이 적용할 수 있다. ifort test_hdf5.f90 -I"C:\Program Files\HDF_Group\HDF5\1.10.4\include\shared" -link -libpath:"C:\Program Files\HDF_Group\HDF5\1.10.4\lib" hdf5_fortran.lib ifort test_hdf5.f90 -I"C:\Program Files\HDF_Group\HDF5\1.10.4\include\shared" -link -libpath:"C:\Program Files\HDF_Group\HDF5\1.10.4\lib" hdf5_fortran.lib -L 에..
1) hdf5 source file을 다운 받는다 https://www.hdfgroup.org/downloads/hdf5/ binary 파일은 기본적으로 fortran 이 연동되어 있지 않으므로, 소스파일을 다운받아 설치를 해야 한다. 이때 cmake 를 이용한 소스파일을 다운 받는 것이 편하다. 2) cmake 가 설치되어 있지 않으면 설치한다. 3) 다운 받은 파일의 압축을 풀면 다음의 폴더가 생성된다. CMake-hdf5-xxx 4) 이 폴더안의 HDF5options.cmake 파일을 열어 fortran 을 enable 한다 #### fortran enabled #### set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_BUILD_FORTRAN:BOOL=O..