파이썬 가상 환경 만들기 1. PIP 모듈 설치> pip install virtualenv virtualenvwrapper (* 윈도우는 virtualenvwrapper-win 설치> pip install virtualenv virtualenvwrapper-win) 사용mkvirtualenv : 가상 환경 생성deactivate : 가상 환경 종료rmvirtualenv : 가상 환경 삭제workon : 가상 환경 진입 개발/Python 2021.06.01
Windows 10 Python 64bit, 32bit install 1. Python 64bit installation(Check [V] Add Python 3.9 to PATH option) * Python 64bint version : 3.9.4(ex, C:\Dev\Python\Python39) 2. Python 32bit installation(Uncheck [ ] Add Python 3.9 to PATH option) * Python 32bit version : 3.9.2(ex, C:\Dev\Python\python39-32) 3. Python version checkC:\Dev> python --version (or python -V)Python 3.9.4 3. Create virtual environment directoryC:\Dev.. 개발/Python 2021.04.15