“py env” Réponses codées

python use .env

import os
from dotenv import load_dotenv

load_dotenv()

GCP_PROJECT_ID = os.getenv('GCP_PROJECT_ID')
SERVICE_ACCOUNT_FILE = os.getenv('SERVICE_ACCOUNT_FILE')
STORAGE_BUCKET_NAME = os.getenv('STORAGE_BUCKET_NAME')
dhupee

installer pyenv

# Linux and Mac only (at the moment)
curl https://pyenv.run | bash
Helpful Hummingbird

py env

#------FOR LINUX/MAC---------#
sudo apt-get install build-essential libssl-dev libffi-dev python-dev #installing requirements
sudo apt-get install -y python3-venv #installing venv 
python3 -m venv env #creating virtual env
source env/bin/activate #activating virtual env


#-------FOR WINDOWS----------# 
py -m pip install --user virtualenv #installing venv
py -m venv env #creating virtual env
.\env\Scripts\activate #activating virtual env
Metin Karakus

Réponses similaires à “py env”

Questions similaires à “py env”

Plus de réponses similaires à “py env” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code