Skip to content

Chenjinyu/apache-airflow

 
 

Repository files navigation

Instrcutions

Install virtualenv with pipenv

  1. Check if your environment has pipenv by run pipenv in your termial. if yes, jump to 2.
brew install pipenv
  1. Create virtualenv with pipenv and install the packages 2.1. if your project root directory has Pipfile.lock.
export PIPENV_VENV_IN_PROJECT=1 && pipenv sync -d

if No, run

export PIPENV_VENV_IN_PROJECT=1 && pipenv shell

it will create .venv folder under the root directory.

2.2. then, run

source .venv/bin/activate

to activate your virtualenv

2.3. run pipenv install to install the packages from [packages] and [dev-packages] 2.4. run pip list to check if all the necessary python packages have been installed successfuly and correctly.

2.4. (Optional) run pipenv lock to create the Pipefile.lock, specificaly, when you have new libraries installed.

references:

About

No description, website, or topics provided.

Resources

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 98.0%
  • Makefile 1.4%
  • Other 0.6%