The path python2 (from –python=python2) does not exist
virtualenv --python=python3 fibonacci_env
Here is what the above code is Doing:
1. We’re creating a virtual environment called fibonacci_env.
2. We’re telling the virtual environment to use Python 3.
Now, let’s activate the virtual environment:
$ source fibonacci_env/bin/activate