Golang에서 Chrome Webdriver + Selenium 사용하기
Golang에 막 입문한 뉴비 고퍼 입니다.
Techical Art & Animation from Somewhere
Golang에 막 입문한 뉴비 고퍼 입니다.
가상환경 추가 (폴더 생성)
$ python3 -m venv [가상환경이름]
가상환경 활성 (가상환경 폴더 ‘test-env’)
$ source test-env/bin/activate
[윈도우 환경]
test-env\Script\activate.bat
가상환경 비활성
$ deactivate
[윈도우 환경]
test-env\Script\deactivate.bat
자료 출처: https://docs.python.org/ko/3/tutorial/venv.html
가상환경 추가
$ conda create --name [가상환경이름]
가상환경 활성
$ source activate [가상환경이름]
가상환경 비활성
$ conda deactivate
가상환경 목록 확인
$ conda env list
가상환경 삭제
$ conda remove --name [가상환경이름] --all