can i create virtual env in a folder code example
Example 1: python virtual env
$ pip install virtualenv
Example 2: python virtual env
$ cd project_folder
$ virtualenv venv
Example 3: create virtual environment code
python3 -m venv venv
$ pip install virtualenv
$ cd project_folder
$ virtualenv venv
python3 -m venv venv