(base) conda activate ds_study
(ds_study) conda install jupyter
(ds_study) conda install ipython matplotlib seaborn pandas sklearn xlrd
설치가 안되서 개별로 쳐줬다
(ds_study) jupyter notebook
https://rasino.tistory.com/289
위 링크를 참조하여 기본 설정 폴더가 아닌
지정 폴더로 jupyter notebook 을 열 수 있다.
우선 ipython을 설치한 후에
ipython3 kernel install
위를 해서인지, 이전에 체크를 안했었는데
파일에 보면 python file 이 있다!
그러나.. 작동이 안된다..
그렇다면 kernel을 뚫어서 base로 접속하여 ds_study 가상환경으로 연결해보면 될까?
python -m ipykernel install --user --name ds_study --display-name "ds_study"
커널을 뚫고 (base)jupyter notebook
우선 된 것 같다. 해본다.
잘 됨!
import matplotlib.pyplot as plt
%matplotlib inline
plt.title("데이터사이언스")
from matplotlib import font_manager
f_path = "C:\Windows\Fonts\GULIM.ttc"
font_manager.FontProperties(fname=f_path).get_name()
from matplotlib import rc
rc("font", family="gulim")