在買了 RTX 3080 要來挖礦... 嗯~是跑機器學習後,結果發現了 GOOGLE COLAB,其實之前在「GAN 對抗式生成網路」一書就有看到,但資訊人就是什麼都想自己安裝,在本機用 Anaconda + pyCharm 弄了 GPU 環境,結果有天從新竹回家發現家裡沒有 RTX 3080 又要重新安裝 CPU 版的 Tensorflow + Keras ..... ,好吧在萬物階雲端的時代,就開始使用 GOOGLE COLAB
進入 https://colab.research.google.com/ 並點選新增筆記本
!pip install TensorFlow-gpu==2.2.0
!pip install keras==2.3.1
!pip3 uninstall -y tensorflow
!pip3 uninstall -y keras
!pip install keras==2.3.1
!pip install tensorflow-gpu==2.2.0
import tensorflow as tf
import keras
print(tf.__version__)
print(keras.__version__)
#Display Current Python Version
!python --version
#Remove the latest version and reinstall the specified version for keras/tensorflow
!pip3 uninstall -y keras
!pip3 uninstall -y tensorflow
!pip install keras==2.3.1
!pip install tensorflow==2.2.0
#Install Python 3.6
!apt-get install python3.6
#Copy Python 3.7 distribution packages to 3.6
!cp -r /usr/local/lib/python3.7/dist-packages /usr/local/lib/python3.6/
#Set priority 數字大的優先
!update-alternatives --install /usr/local/bin/python3 python3 /usr/bin/python3.6 2
!update-alternatives --install /usr/local/bin/python3 python3 /usr/bin/python3.7 1
!python --version
#Check tensorflow / keras version
import tensorflow as tf
import keras
print(tf.__version__)
print(keras.__version__)
OUTPUT :
Reference :
https://zhuanlan.zhihu.com/p/358144434 (手把手教你更换Colab上的python版本)
https://www.cxymm.net/article/qq_42533927/119217527 (colab修改python版本_mh--的博客-程序员秘密)
沒有留言:
張貼留言