파이썬 env 설정

코드 예제

13
0

virtualenv 파이썬 만들기

pip install virtualenv
cd projectfolder #go to project folder
virtualenv projectname #create the folder projectname 
source projectname/bin/activate
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
..................................................................................................................