일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- R
- bioinformatics
- RMSD
- overflowed
- imgaemagick
- venn
- PyMOL
- python
- 리간드
- ab initio
- in planta
- purification
- 소리분석
- 파이몰
- 파이썬3
- 분비단백질
- python2
- 프로그램
- 단백질
- transmembrane
- 생물정보학
- dtw
- python3
- librosa
- protein
- perl
- 3차원구조
- portaudio
- 파이썬
- pyaudio
- Today
- Total
목록python3 (2)
박사면뭐해
소리 분석을 위해 librosa 라이브러리를 설치하는데, llvmlite 패키지 설치 오류가 발생함 Building wheels for collected packages: llvmlite Running setup.py bdist_wheel for llvmlite ... error Complete output from command /usr/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-3hwna_9t/llvmlite/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(cod..
1. py2라는 이름의 Python2 환경 생성하고 Python 2.7 설치하기 conda create --name py2 python=2.7 2. py3이라는 Python3 환경 생성하고 Python 3.5 설치하기 conda create --name py3 python=3.5 ※ py2, py3 두 개의 환경이 만들어짐 3. 리눅스, macOS에서 Python2 환경 실행하기 / Python3도 마찬가지 conda activate py2 4. 리눅스, macOS에서 Python2 환경 종료하기 / Python3도 마찬가지 conda deactivate 출처: docs.anaconda.com/anaconda/user-guide/tasks/switch-environment/