일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- mpi4py
- SSH
- vim
- Visual Studio
- arXiver
- LaTeX
- Matplotlib
- virtual
- hyperref
- jupyter
- polyglot
- datascience
- h5py
- c++
- python
- HFS+
- cython
- Windows
- gfortran
- conda
- GSL
- intel compiler
- tab space
- HDF5
- cygwin
- vi
- openmp
- Anaconda
- MAC
- portforwarding
- Today
- Total
목록Computer Setup (47)
Astro Coke
source: https://github.com/romainl/Apprentice 특히 vimdiff 를 사용할때 색상 때문에 가독성이 떨어지는 경우가 빈번했다. 그럴때는 colorscheme 을 바꿔 주는 것이 좋다. 찾아본 것 중에는 위의 apprentice 가 괜찮았음. apprentice.vim을 다운 받은 후 ~/.vim/colors/ 폴더안에 복사를 한다. 그리고 .vimrc 를 열어 if &diff colorscheme apprentice endif 를 추가하면 됨. 이 구절은 vimdiff 를 사용할때만 apprentice.vim 칼라를 이용한다는 내용. 혹은 간단히, ~/.vim/colors/ 에 diffcolors.vim 을 만들고 그 안에 hi DiffAdd ctermbg=black ..
SSH 로 접속을 했을 때, Cygwin 이 Windows 의 User Path Variable 을 읽어들이지 않고 System Path Variable 만 읽어들인다. 비슷한 경우: https://superuser.com/questions/547098/does-cygwin-import-user-variables-or-just-system-variables Does Cygwin import user variables or just system variables? I can see windows system variables in cygwin with echo $MYVar However, user variables don't seem to work. I'm referring to the variables ..
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..
source: https://stackoverflow.com/questions/35939989/matplotlib-configuration-for-inline-backend-in-jupyter-notebook The Jupyter/IPython split is confusing. Jupyter is the front end to kernels, of which IPython is the defacto Python kernel. You are trying to change something related to matplotlib and this only makes sense within the scope of the IPython kernel. Making a change to matplotlib in ~..
To resolve this issue, openmp module should be installed. If the install is not successful through the default channel, > conda install openmp try like this. 1) search the channel through www.anaconda.org :: Anaconda Cloud New to Anaconda Cloud? Sign up! Already a member? Sign in! I forgot my password I forgot my username anaconda.org 2) find the channel and install like > conda install -c conda..
source: https://iqbalnaved.wordpress.com/2013/12/09/vim-tip-how-to-fix-python-exception-indentationerror/ When it has an error due to the indentation (see following message) >> TabError: inconsistent use of tabs and spaces in indentation -,trail:-,eol:$ list 2. Apply the following to set correct width > :set shiftwidth=4 tabstop=4 expandtab 3. running > :retab Solution 2 1. set ‘list’, so that y..
source: https://towardsdatascience.com/environment-management-with-conda-python-2-3-b9961a8a5097 List your Environments This command shows you all the This is a really helpful command to see what environments you have, but also to see what conda environment you are in. > conda env list Remove an Environment If the name of your environment you want to remove is not subscribe, you will need to sub..