1. Anaconda prompt 실행
2. 가상 환경 구축
conda create -n conda-practice python=3.8
여기에서 conda-practice 는 가상환경 이름이다.
3. list 확인
conda env list
4. 가상환경 활성화
activate jupyter-env
앞에 *이 붙어있는게 활성화된 가상 환경
5. jupyter notebook
'파이썬' 카테고리의 다른 글
pandas read_html() ValueError : No tables found 오류 (0) | 2021.08.17 |
---|---|
웹스크래핑 BeautifulSoup 설치와 에러발생 대처 방법 : bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: html5lib. Do you need to install a parser library? (0) | 2021.08.14 |
기타 정보 모음 (0) | 2021.07.11 |
Font : SourceHanSansk 설치 (0) | 2021.07.06 |
txt 파일에 데이터 열어서 그래프 그리기 (0) | 2021.07.04 |