본문 바로가기
OLD_달려라/호기심천국

python version downgrade

by 달승 2020. 9. 25.
 

How to downgrade python from 3.7 to 3.6

I'm trying to install tensorflow but it needs a Python 3.6 installation and I only have Python 3.7 installed. I tried to switch using brew and pyenv but it doesn't work. Does anyone know of a way...

stackoverflow.com

 

 

// ---- CMD 혹은 Anaconda에서
// ---- 아래 명령어 실행
// ----  = 뒤에는 다운하고 싶은 python version 명시



conda install python=3.6.5
or
conda install python==3.6.5



// ---- 첫 번째 명령어가 안 먹어서 두 번째 명령어를 적용한 것 같은데...
// ---- tensorflow 다운할 때 적용했었는지 기억이 안난다...ㅎ

 

댓글