주피터 랩 접속
- vs code 터미널에 명령어 입력 : $ jupyter lab
- 브라우저로 연결되며 주피터랩 페이지 확인
- 미리 설치했던 라이브러리를 import 하여 잘 작동되는지 확인해보기
#설치한 라이브러리 import
import numpy as np
import pandas as pd
import seaborn as sns
import plotly
import django
import sklearn
import matplotlib
import streamlit as st
#라이브러리 별 버전 프린트
print(np.__version__)
print(pd.__version__)
print(sns.__version__)
print(plotly.__version__)
print(django.__version__)
print(sklearn.__version__)
print(matplotlib.__version__)
print(st.__version__)
728x90
'Programming Basics' 카테고리의 다른 글
쿠키와 세션 (0) | 2023.08.01 |
---|---|
[깃허브] README 파일 잘쓰기 (0) | 2023.07.31 |
맥에서 환경변수 설정하기 (0) | 2023.07.25 |
4. Visual Studio Code에 가상환경 설정 (0) | 2023.07.25 |
3. 파이참 가상환경에 Django 설치 (0) | 2023.07.25 |