일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- GSL
- portforwarding
- HDF5
- tab space
- virtual
- gfortran
- Anaconda
- h5py
- LaTeX
- cython
- Windows
- vim
- vi
- SSH
- intel compiler
- polyglot
- HFS+
- openmp
- arXiver
- python
- cygwin
- c++
- datascience
- hyperref
- Matplotlib
- jupyter
- conda
- mpi4py
- MAC
- Visual Studio
- Today
- Total
목록cygwin (5)
Astro Coke
source: https://stackoverflow.com/questions/14004457/error-loading-mpi-dll-in-mpi4py 1. download MS MPI, install both .mis and SDK. 2. set up environmental variables control panel --> advanced system settings --> environmental variables --> add (1) C:\Program Files (x86)\Microsoft SDKs\MPI and (2) C:\Program Files\Microsoft MPI\Bin. There are my paht, you may need to change the path here. 3. ins..
source: https://gist.github.com/roxlu/5038729 1) 우선은 cygwin set-up 실행파일을 통해 openssh 와 cygrunsrv 패키지를 설치해야한다. 2) Configure SSHD - open a cygwin terminal: start > RIGHT MOUSE ON "Cygwin terminal" AND "RUN AS ADMINISTRATOR" - $ ssh-host-config - Are you sure you want to continue: YES - You have the required privileges: YES - Overwrite existing /etc/ssh_config: YES - Should privilege separation be u..
gsl 라이브러리 등 별도의 라이브러리 패키지를 Visual Studio 의 icl (or ifortran) 과 연동해서 사용하기 위해서는 따로 설치를 해주어야 한다. 가장 손 쉬운 방법은 Nuget 페키지를 이용하는 것. https://www.nuget.org/packages 위 싸이트에서 라이브러리를 확인하거나 다운 받을 수 있다. 설치하는 것은 비교적 간단하다. 우선 비주얼 스튜디오를 열고, 새 프로젝트를 오픈한다음, 오른쪽 구조창에서 프로젝트에 오른쪽 마우스를 클릭하면 나오는 매뉴 중 Manage Nuget Package for solution 를 선택한다. 이 후, 원하는 라이브러리 페키지를 선택해 설치를 하면 되는데, 이때 설치되는 디렉토리를 잘 살펴봐야 한다. 설치된 이후에는 별도의 디렉토리..
우선 hdf5 소스파일을 다운받는다. https://portal.hdfgroup.org/display/support/Downloads 압축을 풀고, 아래의 순서와 같이 설치하면 된다. 1) > export FC=gfortran > ./configure --enable-fortran --prefix=hdf_install_directory 2) > make > make check (optional) 3) > make install 이때 --prefix 로 설정된 폴더에 hdf5 가 생성되고 그 안에는 lib include bin share 서브폴더들이 설치된다. 4) .bashrc 에서 path에 위의 bin 폴더를 추가한다. ex) export PATH=hdf_install_directory/bin:$PA..
Cygwin 에서 Latex 를 이용하려면, 가장 쉬운 방법은 cygwin_setup 을 이용해서 tex package 를 설치하는 것이다. 하지만 이때 설치되는 latex 패키지는 Miktex 이나 TexLive 에 비해 작은 패키지를 설치하기 때문에 따로 패키지를 설치해야 하는 경우가 많다. 그래서 생각한 방법~! 1) Tex Live Window용을 아래 사이트에서 다운 받아 설치한다. https://tug.org/texlive/acquire-netinstall.html 2) cygwin terminal 을 열고 /usr/bin 폴더로 이동해 기본 명령어들을 연결한다. Tex Live 가 C:\texlive 에 설치 되었다면 다음과 같이 연결할 수 있다. e.g.) > cd /usr/bin > ln..