3) 설치된 라이브러리들의 버전 확인 하기



Last updated
Was this helpful?



Last updated
Was this helpful?
Was this helpful?
import scipy as sp
import numpy as np
import matplotlib as mpl
import pandas as pd
import sklearn as sk
import h5py
import tensorflow as tf
import keras as k
print('scipy ' + sp.__version__)
print('numpy ' + np.__version__)
print('matplotlib ' + mpl.__version__)
print('pandas ' + pd.__version__)
print('sklearn ' + sk.__version__)
print('h5py ' + h5py.__version__)
print('tensorflow ' + tf.__version__)
print('keras ' + k.__version__)