when following the manual instructions step by step the setup fails because the 'virtualenv' command not found
1.Clone the repository Bitpoll [git clone https://github.com/fsinfuhh/Bitpoll]
2.cd BItpoll
after completing the above two steps then run the "virtualenv -p $(which python3) .pyenv" then result shows virtualenv: command not found
The installation should complete successfully or provide instructions to install virtualenv.
Add a step to install virtualenv: i.e, pip install virtualenv or python3 -m venv .pyenv
The main cause of the error command not found is This error occurs because virtualenv is not included by default in many Python installations.
when following the manual instructions step by step the setup fails because the 'virtualenv' command not found
1.Clone the repository Bitpoll [git clone https://github.com/fsinfuhh/Bitpoll]
2.cd BItpoll
after completing the above two steps then run the "virtualenv -p $(which python3) .pyenv" then result shows virtualenv: command not found
The installation should complete successfully or provide instructions to install virtualenv.
Add a step to install virtualenv: i.e, pip install virtualenv or python3 -m venv .pyenv
The main cause of the error command not found is This error occurs because virtualenv is not included by default in many Python installations.