Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 딥러닝
- 시각화
- 파이썬 시각화
- 서평
- Ga
- 한빛미디어서평단
- 텐서플로
- python visualization
- MATLAB
- Tistory
- 한빛미디어
- SQL
- 통계학
- Google Analytics
- 티스토리
- 블로그
- Visualization
- 파이썬
- Linux
- matplotlib
- 서평단
- 매틀랩
- Pandas
- MySQL
- 리눅스
- 월간결산
- 독후감
- Python
- Blog
- tensorflow
Archives
- Today
- Total
목록ComputerLanguage_Program/fortran (1)
pbj0812의 코딩 일기
[fortran] mac에 fortran 설치 및 테스트
0. 목표 - mac OS에 fortran 설치 및 테스트 1. 설치 - gfortran 설치 brew cask install gfortran 2. 테스트 1) 코드 작성 - test.f90 program hello implicit none write(*,*) 'Hello world!' end program hello 2) compile - a.out 생성 gfortran test.f90 3) a.out 실행 - 에러발생 ./a.out 3. 에러 잡기 1) 원인 판단 - 위의 libgfortran.3.dylib 파일은 /anaconda3/bin/libgfortran.3.dylib 에 존재 => 경로 설정이 잘못되어 에러가 발생할 가능성 존재 2) 해결방안 - ln 을 통해 하드링크를 걸어줌 - 뒤이어 발..
ComputerLanguage_Program/fortran
2020. 5. 4. 22:33