Paketleri sanal env'ye yükleyin

Kod örnekleri

4
0

Python virtualenv oluştur

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

sanal ortam python'unu etkinleştir

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

Diğer dillerde

Bu sayfa diğer dillerde

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