pip install "package이름" 명령어로 다양한 python 패키지를 인스톨 할 수 있다.
pip install numpy scipy
혹시 Permission denied 에러가 난다면,
sudo pip install numpy
를 이용한다.
Cannot uninstall 'six'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
Could not install packages due to an EnvironmentError: [Errno 1] Operation not permitted: '/System/Library/Frameworks/Python.framework/Versions/2.7/man'
sudo pip install matplotlib --upgrade --ignore-installed six
tables 3.4.4 has requirement numpy>=1.8.0, but you'll have numpy 1.8.0rc1 which is incompatible.
tables 는 NumPy 버전 1.8 이상을 요구하므로, 혹시 버전이 낮다면,
sudo pip install numpy --upgrade
이후,
sudo pip install tables
나머지 패키지도 인스톨
pip install pysam intervaltree biopython pyBigWig
'맥 이야기' 카테고리의 다른 글
[Mac] openssl 설치 (0) | 2019.03.04 |
---|---|
[Mac] 코어 수 확인하기 in terminal (0) | 2019.02.28 |
[Mac] 맥에서 터미널 이용하여 pip install (0) | 2019.02.28 |
[Mac] 맥에 특정 버전의 자바 jdk 깔기 (java8) (0) | 2019.02.21 |
[Mac] 맥에서 터미널을 이용하여 R installation (0) | 2019.02.18 |