Skip to content
This repository has been archived by the owner on May 17, 2024. It is now read-only.

Latest commit

 

History

History
26 lines (17 loc) · 495 Bytes

venv.md

File metadata and controls

26 lines (17 loc) · 495 Bytes

Installing and creating a virtual environment

pip3 install virtualenv --user

Follow the guide here: https://docs.python-guide.org/dev/virtualenvs/#virtualenvironments-ref.

You can name your virtual environment oci or chaostk or another name of your preference e.g. :

virtualenv ~/.venvs/chaostk

Activate the environment on Linux/macOS:

source  ~/.venvs/chaostk/bin/activate

Activate the environment on Windows:

source  ~/.venvs/chaostk/Scripts/activate