Virtual env 에 패키지 설치

코드 예제

4
0

파이썬 만들기 virtualenv

pip install virtualenv # install first
cd projectfolder # go to project folder
python -m venv ./venv # Create a virtual environment named venv
Activate.ps1 # (powershell) start the file  to start the environment
activate.bat # (cmd) start the file  to start the environment
# if it worked you'll see a (venv) in front of your cursor path
1
0

가상 환경 파이썬 활성화

Install venv with this command:
	pip install virtual env
    
Create a directory and type the following command in terminal:
	python -m venv virtual <-- "The last word in command is the name of the venv, you can call it whatever you want."
    
Activate virtual environment:
	source virtual/bin/activate

다른 언어로

이 페이지는 다른 언어로되어 있습니다

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................